$(document).ready(function(){
	$('li.header_link').hover(
		function() {
			$('ul', this).stop().animate({height:'50%'},{queue:false, duration:600, easing: 'swing'});
		},
		function() {
			$('ul', this).stop().css('display','none');
			$('ul', this).stop().css('height','0px');
		}
	);
	
	$('.header_submenu_link').hover(
		function() {
			$('a', this).css('color','#ffffff');
		},
		function() {
			$('a', this).css('color','#ffffff');
		}
	);

});
	


