// JavaScript Document
jQuery(document).ready(function(){

	// email anti-spam
	jQuery('span.snd_eml').each(function(i){
		var c = jQuery(this).text().split(' (0) ').join('@');
		var t = jQuery(this).attr('title');
		if (t)	jQuery(this).replaceWith('<a href="mailto:' + c + '">' + t + '</a>');
		else 	jQuery(this).replaceWith('<a href="mailto:' + c + '">' + c + '</a>');
	});
	// catalog item details even rows highlight
	jQuery('#wrapper #contentblock #left #content #catitem_details .detail:even').addClass('even');

});

window.onload = function(){
  
  jQuery('#photobox .carousel').carousel( { 
      direction: "horizontal",
			loop: true,
			dispItems: 1,
			pagination: false,
			paginationPosition: "inside",
			nextBtn: "<span>Next</span>",
			prevBtn: "<span>Previous</span>",
			btnsPosition: "inside",
			nextBtnInsert: "appendTo",
			prevBtnInsert: "prependTo",
			autoSlide: true,
			autoSlideInterval: 3000,
			delayAutoSlide: 500,
			combinedClasses: true,
			effect: "slide", // change to "fade" if needed
			slideEasing: "swing",
			animSpeed: "normal",
			equalWidths: "true"
});
	jQuery('#content img.tooltip').brTip({title:'', opacity: 1, fadeIn: 'fast', fadeOut: 'fast'});
}
