// SCRIPTS 


$(document).ready(function(){
	//Verifica iphone ou ipad!
	
	if(navigator.userAgent.match(/iPad/i)  != null){
			location.href="ipadiphone/"
	}
		
		
	if(navigator.userAgent.match(/iPhone/i)  != null){
			location.href="ipadiphone/"
	}
		
	
	
	
		
});
