$j = jQuery.noConflict();
$j(document).ready(function(){
	var browser = navigator.userAgent;
	if (browser.indexOf("Safari")!=-1) {
		$j(".menu_item").css({padding:"14px 20px 0px 19px"});
 	}
	$j("#gal_contenido").scrollable({loop:true, size:5, prev:"#prev", next:"#next"}).autoscroll({
		autoplay:true
	}).circular();
	$j("#main_menu").corner();
	$j("#sm_contenedor").corner("bottom");
	$j(".sm_wrap").corner("5px");
	$j("#gal_contenedor").corner();
	$j("#barra_tit_izq").corner();
	$j(".fondo_tit").corner();
	$j("#cont_certif").corner();
	$j("#5 a").attr("href", "index.php?id=28");
	//$j("#home_banner > *").mouseover(smRollout());
	$j("#sm_contenedor").mouseleave(smRollout);
});
function showSubs(mmId){
	if(mmId=="2" || mmId=="3" || mmId=="4" || mmId=="7" && $j("#sm_contenedor").css("display")=="none"){
		var rowId = "sm_"+mmId;
		var opciones = {};
		if($j("#sm_contenedor").css("display")=="none"){
			$j("#"+rowId).css("display", "block");
			$j("#sm_contenedor").show("fold", opciones, "normal");
		} else if(mmId=="2" || mmId=="3" || mmId=="4" || mmId=="7"){
			$j(".sm_wrap").css("display", "none");
			$j("#"+rowId).css("display", "block");
		} else {
			smRollout();
		}
	} else {
		smRollout();	
	}
} 
function smRollout(){
	if($j("#sm_contenedor").css("display")=="block" && $j("#sm_contenedor > *").mouseover()!=true){
		var opciones = {};
		$j("#sm_contenedor").hide("fold", opciones, "normal");
		$j(".sm_wrap:visible").css({"display":"none",'background':'url(images/linea_menu.png) no-repeat right center'});
	}
}