$(document).ready(function(){
				
				// navigation fade in on mouseover
				$("#navigation img").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 70% when the page loads
				$("#navigation img").hover(function(){
				$(this).fadeTo("quick", 1.0); // This should set the opacity to 100% on hover
				},function(){
				$(this).fadeTo("slow", 0.8); // This should set the opacity back to 70% on mouseout
			});
			});



$(document).ready(function(){
	//Fancybox
	
	$("a#single_image").fancybox(
	{
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		false,
		'imageScale':		true
	});
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	$("a.group").fancybox({
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		false
	});
});


$(document).ready(
				function(){
				
				//Slideshow
					
					$('ul#jquery_slideshow_widget').innerfade({
						speed: 800,
						timeout: 4000,
						type: 'sequence',
						containerheight: '200px'
					});
					
					
			});
