jQuery(document).ready(function($) {
	
	
	
	$('ul#menu-main li').hover(function(){
		$(this).find('ul:first').stop(true, true).slideToggle(500);
	  },function(){ 
		$(this).find('ul:first').stop(true, true).slideToggle(900);
   });
	
	$('ul#menu-main ul.sub-menu li a').hover(
    function () {
        $(this).removeClass('highlight');
        $(this).stop(true, true).animate({color: '#fff'}, 400);
        }, function () {
        $(this).stop(true, true).animate({color: '#3576be'}, 600);
    });
	
	$('ul#social_networks li a').hover(function(){ 
			$(this).stop().animate({top: '6'}, 100);
       },function(){ 
        $(this).stop().animate({top: '0'}, 200);
	});
	
	$('input[type="text"], textarea').focus(function() {  
		$(this).removeClass("idleField").addClass("focusField");  
		if (this.value == this.defaultValue){  
			this.value = '';  
		}  

		if(this.value != this.defaultValue){  
			this.select();  
		}  
	});  

	$('input[type="text"], textarea').blur(function() {  
		$(this).removeClass("focusField").addClass("idleField");  
		if (this.value == ''){  
			this.value = this.defaultValue;  
		}
	});		

});


	
	

