$(document).ready(function(){
	
	$(".gallery-big-img").animate({opacity: 1}, 500);
	
	//fadelink for pages to fade in and out
	$("a.fadelink").click(function() {
	
		turl = $(this).attr("href");
	
		$(".gallery-big-img").animate({opacity: 0}, 500, function() {		
			window.location.href = turl;			
		});
		
		return false;
		
	});
	
});

$(document).ready(function(){
	$('div.headlink').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });
});


$(document).ready(function(){
	
	$(".thumb-switch-off").hide();
						  
	$(".thumb-switch").click(
							 
		function(){ 
		
		$("#gallery-thumbnail-container").animate({height: '100%'}, 500);
		$(".thumb-switch").toggle();
		$(".thumb-switch-off").toggle();
		
	});
	
	$(".thumb-switch-off").click(
							 
		function(){ 
		
		$("#gallery-thumbnail-container").animate({height: '131'}, 500);
		$(".thumb-switch").toggle();
		$(".thumb-switch-off").toggle();
		
	});

	
});


