$(document).ready(function(){	
	$("#fullmenu").hide();
	$("#boxinsidefull").hide();
	var deviceAgent = navigator.userAgent.toLowerCase();
	var agentID = deviceAgent.match(/(iphone|ipod|ipad)/);
	if (agentID) {
		var open=false;
		$(".startfullmenu").click(function(){

			$(this).parent().find('#fullmenu').stop(true,true).delay(300).slideDown('slow',function(){
				$("#boxinsidefull").fadeIn(200);
				open=true;
			});
		});
		$(".startfullmenu").parent().click(function(){
			if(open==true){		
				$(this).find('#fullmenu').stop(true,true).delay(500).slideUp(function(){
					$("#boxinsidefull").hide(); open=false;
				});
			}		
		});
	}
	else{
		$(".startfullmenu").bind('mouseenter', function(){
			$(this).parent().find('#fullmenu').stop(true,true).delay(300).slideDown('slow',function(){
				$("#boxinsidefull").fadeIn(200);
			});
		});
		$(".startfullmenu").parent().bind('mouseleave', function(){
			$(this).find('#fullmenu').stop(true,true).delay(500).slideUp(function(){
				$("#boxinsidefull").hide();
			});
	  	});
	}
});

