/* Author: 

*/

jQuery(document).ready(function() {
								
	//  slideshow  ------------------------------------------------------	
	slideShow(6000);

	//  Featured fade ------------------------------------------------------ //
	$(".featured li").each(function(){
		$(this).css("opacity", "0.95");
		
		$(this).hover(function(){
			$(this).animate({ opacity: "1" }, {queue:false,duration: 200});
		}, function() {
			$(this).animate({ opacity: "0.95" }, {queue:false,duration: 200});
		});
	});

	// map fancybox  ------------------------------------------------------	
	$(".fancybox-map").fancybox({
		'width'				:  '90%',
		'height'			:  '90%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$(".fancybox-diagram").fancybox({
		'width'				:  470,
		'height'			:  490,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$(".fancybox").fancybox();

	// banner fade  ------------------------------------------------------	
	$('.slideshow-internal').cycle({
            fx: 'fade',
			timeout:  4000 
    });
	
	// ------ clickable box ------------------------------------------------------ //
	$("ul.featured li, ul.product li").click(function(){
		  window.location=$(this).find("a").attr("href");return false;
	  });

	
});


