$(document).ready(function(){

	var menu_row_height = Number(38);

	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#menu li").mouseover(function(){
		$(this).stop().addClass('active');

		var number_of_childs = $(this).find("ul").find("li").length;
		$(this).find("ul").stop().animate({height: (menu_row_height*number_of_childs)+'px', visibility:'visible'},{queue:false, duration:300, easing: 'easeOutBounce'});

		if( jQuery.browser.msie && (jQuery.browser.version <= 7) ) {
			//$("select.seleccion2").css({'visibility': 'hidden'});
		}
	});
	
	//When mouse is removed
	$("#menu li").mouseout(function(){
		$(this).stop().removeClass('active');

		$(this).find("ul").stop()
			.animate({height:'0px', 'visibility':'hidden'},{queue:false, duration:300, easing: 'easeOutBounce'});

		if( jQuery.browser.msie && (jQuery.browser.version <= 7) ) {
			//$("select.seleccion2").css({'visibility': 'visible'});
		}
	});

});

