jQuery(document).ready(function(){

	jQuery('.menu_item > a').mouseover(function(){
	//	alert('test');
		
		if(jQuery(this).parent().hasClass('active')){
			return false;
		}

		jQuery(this).animate({
			height: '47px',
			top: '0px'
		  }, 300);

	}).mouseleave(function(){
		if(jQuery(this).parent().hasClass('active')){
			return false;
		}

		jQuery(this).animate({
			height: '30px',
			top:'17px'
		}, 150);
	});

	jQuery('#header_selected').mouseover(function(){
			jQuery('#header_selected').animate({
				opacity: 1
			}, 142);
		}).mouseleave(function(){
		jQuery('#header_selected').animate({
			opacity: 0
		}, 242);
	});

});

