// JavaScript Engine

	jQuery(document).ready(function(){
	
	jQuery('.sponsor a').fadeTo("slow", 0.5);

	jQuery('.sponsor a').hover(function(){
	jQuery(this).fadeTo("slow", 1);

		}, function() {
		jQuery(this).fadeTo("slow", 0.5);

		});
	
	// jQuery('#slider').loopedSlider({
	// 		container: ".slideshow",
	// 		pagination: "pagination",
	// 		autoStart: 2500,
	// 		restart: 900,
	// 		slidespeed: 1200,
	// 		fadespeed: 200
	// 	});
		
	jQuery('#ss ul').innerfade({
			speed: 'slow',
			timeout: 4000,
			type: 'sequence',
			containerheight: '220px'
	});
		
		jQuery('.gallery a, .col .img a, .gal a').fancybox({
				'titleShow'     : false
			});
	
  
});

