
Shadowbox.init({
    handleOversize: "resize",
    overlayOpacity: "0.9",
	initialHeight: "350",
	initialWidth: "500",
	displayNav: true,
	slideshowDelay: "5",
	displayCounter: true,
	counterType: "skip",
	counterLimit: "20",
	continuous: true
});

$(document).ready(function() {		
	
	/*
	 *  Image Rotator
	 */
	
	$('#rotator ul').innerfade({
		speed: 4000,
		timeout: 5000,
		type: 'sequence'
	});
	
	/*
	 *  Fade Images
	 */
	 
	$(".fade").css("opacity","0.6"); 
	$(".fade").hover(function () { 
		$(this).stop().animate({ 
			opacity: 1.0
		}, "fast");
	},
	function () {
		$(this).stop().animate({ 
			opacity: 0.6
		}, "fast");
	});	
	

});
