$(document).ready(function(){
	menu();
	$(window).resize(function(){
		menu();						  
	});
	
	$("#criatura").live('mouseover', function(){
		show();
	});
	
	$("#criatura").live('mouseout', function(){
		jQuery.removeData(this);
		//$(this).mouseover.stopPropagation(); 
		//$("#criatura").stop();
		hide();
	});	
});

function menu(){
	var comprimento=$(window).width();
	if(comprimento<955){
		$("#menu").css("marginLeft",0);
		$("#menu").css("left",0);
		$("#topo_top").css("width",955);
		$("#menu").css("width",955);
	}
	else{
		$("#menu").css("marginLeft",-477);
		$("#menu").css("left","50%");
		$("#topo_top").css("width","100%");
		$("#menu").css("width","auto");
	}	
}

/* CRIATURA */
function show(){
	$("#criatura").animate({
		width: '72',
		backgroundPosition:0
	});
}
function hide(){
	$("#criatura").animate({
		width: '5',
		backgroundPosition:-21
	});
}
