$(document).ready(function() { 

	$(window).scroll(function () {
	  var html = $(window);

		var scrolltop = html.scrollTop();
	  
	  if ($('.title1').offset().top > scrolltop)
	  	{$('#menu').css("margin-top", $('.title1').offset().top);}
		
	  if ( scrolltop > $('.title1').offset().top)
	  	{$('#menu').css("margin-top", $('.title2').offset().top);}
		
	  if ( scrolltop > $('.title2').offset().top)
	  	{$('#menu').css("margin-top", $('.title3').offset().top);}
		
	  if ( scrolltop > $('.title3').offset().top)
	  	{$('#menu').css("margin-top", $('.title4').offset().top);}
		
	  if ( scrolltop > $('.title4').offset().top)
	  	{$('#menu').css("margin-top", $('.title5').offset().top);}
		
    });
	
	
	$(".partners .shadow_bg").mouseover(function () {
		$(this).css('background','#fff url(images/partners_roll.png) repeat-y right');										   
    }).mouseleave(function () {
		$(this).css('background','#fff');										   
    });
	
	$(".projects li").mouseover(function () {
		$(this).addClass("pink");										   
    }).mouseleave(function () {
		$(this).removeClass("pink");										   
    });
	
	$(".form .text_field3").height($(".contact_right").height()-230);
	$(".form textarea").height($(".contact_right").height()-257);


});

