// JavaScript Document

jQuery(function(){
			jQuery('ul.menu').supersubs({
				minWidth:    7,   // minimum width of sub-menus in em units 
            	maxWidth:    20,   // maximum width of sub-menus in em units 
            	extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
			}).superfish();
			//alert($("title").text().split("-")[1]);
			
			if(document.getElementById("flash_empresa")!= null){
			$(".media").media({bgColor:'transparent',
							  width:'300px'});
			}
			if(document.getElementById("flash_sunshine_prof_home")!= null){
			$(".media").media({bgColor:'transparent',
							  width:'779px',
							  height:'417px'});
			}
			
			if(document.getElementById("flash_principal")!= null){
			$(".media").media({bgColor:'transparent',
							  width:'782px',
							  height:'580px'})
			}
			
			$("#menu_lateral ul li a").attr("title", function(i,valor){
			if($("title").html().indexOf(valor)>0){ 
				$("#menu_lateral ul li a").eq(i).remove();
				$("#menu_lateral ul li").eq(i).append('<strong>' + valor + '</strong>');
			}
			
			})
			
			$("#menu ul.menu ").children("li").children("a").attr("rel",function(i,valor){
				if(window.location.toString().indexOf(valor)>0){
					if($("#menu ul.menu ").children("li").children("a").eq(i).attr("rel")==valor){
						$(this).parent().addClass("selecionado");
						$(this).parent().append($(this).attr("title"));
						$(this).remove();
						$(".selecionado ul:first-child").css("margin-top","6px");
					};
				}
			})
			$('.sublogotipo').children().css("width","52px");
});
