var minheight = 0;
$(document).ready(function() {
	//jQuery('#parallax').jparallax({mouseport: jQuery('#wrapper')}, {ytravel: '10px', xtravel: '100px'}, {ytravel: '10px', xtravel: '200px'}, {ytravel: '10px', xtravel: '300px'}, {ytravel: '10px'});
	
	$(window).resize(function() {
		resizeWindow();
	});
	resizeWindow();
	minheight = $('#text').height();
	//setTimeout("moveWave1();", 0);
	//setTimeout("moveWave2();", 1000);
	// home
	$('#umbrella1').delay(700).animate({opacity: "1",top:"60px"}, {duration:2000, easing:"easeOutExpo"});
	$('#umbrella2').delay(0).animate({opacity: "1",bottom:"100px"}, {duration:2000, easing:"easeOutExpo"});
	$('#octopus').delay(500).animate({opacity: "1",left:"0px"}, {duration:2000, easing:"easeOutExpo"});
	// about
	$('#submarine').delay(700).animate({opacity: "1",bottom:"0px"}, {duration:1000, easing:"easeOutBack"});
	// portfolio
	$('#bunny').delay(900).animate({opacity: "1",bottom:"20px"}, {duration:2000, easing:"easeOutExpo"});
	$('#speech_bubble').delay(1300).animate({opacity: "1",bottom:"280px"}, {duration:2000, easing:"easeOutExpo"});
	
	
	// set menu nav
	
	$('.portfolio').click(function() {
		
		var id = $(this).attr('href');
		
		
		
		$.ajax({
			url: 'get_portfolio.php',
			type: "POST",
			data: {'name' : id.substring(1)},
			success: function(data) {
			$('.result').html(data);
				
			}
		});
	});
	
	
	
});

function resizeWindow() {
	var h = $(window).height();
	//alert( $('#text').height() );
	if(h > 680) {
		h = h - 243;
		$('#text').height(h);	
	}
	
	
}


function moveWave1() {
	$("#wave1").everyTime(10, function(){						 
		$("#wave1").animate({bottom:"0%"}, 2000).animate({bottom:"-10%"}, 1000);	
	});
}

function moveWave2() {
	$("#wave2").everyTime(10, function(){						 
		$("#wave2").animate({bottom:"0%"}, 2000).animate({bottom:"-8%"}, 1200);	
	});
}
