

//<![CDATA[
hs.registerOverlay({
	html: '<div class="closebutton" onclick="return hs.close(this)" title="Close"></div>',
	position: 'top right',
	fade: 2 // fading the semi-transparent overlay looks bad in IE
});


hs.graphicsDir = 'Scripts/highslide/highslide/graphics/';
hs.wrapperClassName = 'borderless';
//]]>

$(document).ready(function() {
    //alert('a');
	
	$("#tabs").tabs();
	
	$("ul.sf-menu").superfish({ 
        	delay:	500,
        	speed: 'fast',
            pathClass:  'current',
            animation:   {opacity:'show'}
        	});

	
	$('.slideshow-brands').cycle({
		random: 0,
		fx: 'fade',
		cleartype:true,
		cleartypeNoBg: true
		 });

	
	
	$('.slideshow').cycle({
		random: 1,
		fx: 'scrollHorz',
		timeout: 5000,
		cleartype:true,
		next:   '.next', 
    	prev:   '.prev',
		after:   onAfter  	});
		
});
//end document ready 


function onAfter(curr, next, opts) {
    var index = opts.currSlide;
	$('#module_gallery_caption').html(this.alt);
	//$('#module_gallery_caption').html("<a href=" + this.href + ">" + this.title + "</a>");
    $('.prev')[index == 0 ? 'hide' : 'show']();
    $('.next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}



   

