// execute your scripts when the DOM is ready. this is a good habit
$(function() {
$("#menu_back img[title]").tooltip({ effect: 'fade'});
	});

$(function() {
$("#contactmex img[title]").tooltip({ effect: 'fade', position: 'bottom center'});

	});


// fade in page

$(function(){
	$('#supersize').hide();				
	$('#supersize').fadeIn(3000)
	});

$(function(){
	$('#contactmex').hide();				
	$('#contactmex').delay(4000).fadeIn(3000)
	});

$(function(){
	$('#menu_back').hide();				
	$('#menu_back').delay(4000).fadeIn(3000)
	});


$("#jet").click(function(){

$("#jet").animate({"left": "+=50px"}, "slow");
	});

