Shadowbox.init({
	overlayOpacity:0.90
});

var prevPage = false;

$(document).ready(function() {
		$(".work").hover(function() {
	      $(this).children(".work_desc").animate({opacity: 0.95},500);
		},function() {
	      $(this).children(".work_desc").animate({opacity: 0}, 500);
	  });


	  $("#closeMenu").click(function() {
	  	$("#menuContainer").animate({top: -130}, 500);
	  	$("#content"+prevPage).hide(500);
	  	prevPage = false;
	  });
	  
	  $("input").defaultValue();
});

function swapPage(id) {
	if(id == prevPage) {
		$("#closeMenu").click();
		return;
	}

	$("#menuContainer").animate({top: 0}, 500);
	$("#content"+id).show(500);
	
	if(prevPage) $("#content"+prevPage).hide(500);
	prevPage = id;
}


function postForm() {
	document.getElementById("mailstatus").innerHTML = "Sending..."; 
	$.post("http://www.tjweb.no/wp-content/themes/tjweb2010/sendmail.php", $("#contactform").serialize(),function(data){
		document.getElementById("mailstatus").innerHTML = data;
	});
}
