// Written by Ontwerp van Honing 2010
// http://www.vanhoning.nl

/////// GLOBAL VARS...


$(document).ready(function(){


//$(".trigger").hover(function() { $(this).children().children(".thumbholder").toggle(); });

$(".trigger").hover(
			function() { $(this).children().children(".thumbholder").fadeTo(130,0); },
			function() { $(this).children().children(".thumbholder").fadeTo(200,1); }
);

//$(".container").css("cursor","pointer").css("top",-200);

var WHeight = $(window).height();

//$(".header").toggle(  
//	function(){
//		$(".content").fadeTo(100,0);
//		$("#maintext").fadeTo(100,0);
//		$(".container").animate({top:(WHeight-500)/2});
//	},
//	function(){
//		$(".content").fadeTo(100,1);
//		$("#maintext").fadeTo(100,1);
//		$(".container").animate({top:-200});
//	}  
//	
//)
//$(".trigger").hover(
//			function() { $(this).children().children(".thumbholder").children("div").animate({top:22}); },
//			function() { $(this).children().children(".thumbholder").children("div").animate({top:0}); }
//);


});  // CLOSE DOC READY
