function readmore() {
	$("#contentMore").slideDown();
	$("#readMore").fadeOut();
}

$(document).ready (
    function () {

        $('.input-contacts').focus( function () { $(this).css( {'background-color':'#666', 'color':'#fff', 'border-color':'#ff3c17'} ); } );
        $('.input-contacts').blur( function () { $(this).css( {'background-color':'#383838', 'color':'#aaa', 'border-color':'#666'} ); } );
		
		$('.input-newsletter').focus( function () { $(this).css( {'color':'#222', 'border-color':'#ff3c17'} ); } );
        $('.input-newsletter').blur( function () { $(this).css( {'color':'#666', 'border-color':'#fff'} ); } );

        $('.btn-submit').mouseover( function () { $(this).css( {'background-color':'#333', 'color':'#ff3c17'} ); } );
        $('.btn-submit').mouseout( function () { $(this).css( {'background-color':'#ff3c17', 'color':'#333'} ); } );

        $('.btn').mouseover( function () { $(this).css( {'background-color':'#333', 'color':'#cacc07'} ); } );
        $('.btn').mouseout( function () { $(this).css( {'background-color':'#ff3c17', 'color':'#333'} ); } );

    }
);