// JavaScript Document

var flashvars = {
	};
var params_logo = {
	wmode : "transparent"
};
var attributes_logo = {
};
	
swfobject.embedSWF("swf/logo.swf", "logo_swf", "175", "162", "9.0.0","expressInstall.swf", flashvars, params_logo, attributes_logo);


$(document).ready(function(){
						   
	$(".abre_sub").mouseover(function(){
		$('.sub_menu_cientifico').show();
		$('.abre_sub span').show();
		
		$('.menu li a:not(.abre_sub)').mouseover(function(){
			$('.sub_menu_cientifico').hide();
			$('.abre_sub span').hide();
		})
		
	});
	
	$('.sub_menu_cientifico').mouseover(function(){
			$(this).show();
	})
	.mouseout(function(){
			$(this).hide();
	})
	
	if (typeof adj!='undefined'){
		adj()
	}
	
})//$

