function structured_start(device,id){
	//if(id!=0 && id!=2 && id!=8 && id!=102) animate();
	if(id!=0){ 
		if($('#rootbanner').css('display') == 'none'){
			animate();
		} else animate('anchorB');
	}
	if(id==0) ghost('#rootbanner',0); else ghost('#rootbanner',1);
	$('.murat_logo').attr('murat','if:load,on:window,do:bounceIn animated;if:mouseover,do:pulse animated;');
	$('.murat_index_primordial').attr('murat','if:scroll,on:window,do:bounceIn animated,before:scrollReveal;');
	$('.murat_index_post').attr('murat','if:scroll,on:window,do:bounceIn animated,before:scrollReveal;if:mouseover,do:pulse animated;');
	$('.murat_index_important').attr('murat','if:scroll,on:window,do:bounceIn animated,before:scrollReveal;');
	$('.murat_index_publications').attr('murat','if:scroll,on:window,do:fadeInDown animated,before:scrollReveal;');
	$('.murat_foot').attr('murat','if:scroll,on:window,do:fadeInUp animated,before:scrollReveal;');
	// post
	$('.murat_price').attr('murat','if:scroll,on:window,do:bounceInRight animated,before:scrollReveal;');
	$('.murat_off').attr('murat','if:scroll,on:window,do:rotateIn animated,before:scrollReveal;');
	Murat.run();
	/* Boton responsive */
	$("#btn-responsive").mouseenter(function(){ $("#menu-responsive").show('slow'); });
	$("#menu-responsive").mouseleave(function() { $("#menu-responsive").hide('slow'); });
}
function clickResponsive(){ $("#menu-responsive").hide('slow'); }

function openSearch(){
	var str = trim(document.getElementById('search').value);
	if(empty(str)==true || str.length<3){
	} else {
		sendback('search:"'+cryptaEncode(document.getElementById('search').value)+'"','eval(data);');
		//document.getElementById('search').value='';
	}
}

function goCart(){ animate('gocart'); }
function goArticles(){ animate('goarticles'); }
function updateCart(number){
	if(number>0){
		document.getElementById("top_cart_out").style.display="none";
		document.getElementById("top_cart_in").style.display="block";
	} else {
		document.getElementById("top_cart_out").style.display="block";
		document.getElementById("top_cart_in").style.display="none";
	}
	document.getElementById("top_cart_value").innerHTML=number;
}

var myAudio=document.createElement('audio');
var myMessageAlert='';
var mySection=false;
myAudio.addEventListener('ended', function(){
   var txt=(mySection?(document.getElementById("info_3")?document.getElementById("info_3").value:''):'')+'alert(myMessageAlert);';
   sendback('form_delivery:1',txt);
});
function refreshAlert(){
	if(!noDefine('myTime')) clearTimeout(myTime);
	if(document.getElementById("sound_status")){
		myAudio.src=document.getElementById("info_2").value+'audio.mp3';
		var status=document.getElementById("sound_status").value;
		if(status!=''){
			if(status==1){
				if(document.getElementById("section_refresh").value==1) mySection=true;
				myMessageAlert=document.getElementById("info_1").value;
				myAudio.play();
			}
		}
		myTime=setTimeout(function(){ refreshAlert(); },5000);
	}
}