// JavaScript Document


/*THIS FIXES THE CONFLICT BETWEEN THE LIGHTBOX (prodotype.js) & (jquery.js) so both the nav and photogallery can work together.*/
var tb_pathToImage = "path-to-images/loadingAnimation.gif";

/*!!!!!!!!!!!!!!!!! edit below this line at your own risk !!!!!!!!!!!!!!!!!!!!!!!*/

(function($) {

$(document).ready(function(){
		// OPACITY OF BUTTON SET TO 100%
		$(".imageSet a").css("fast", 1.0);
		
		// ON MOUSE OVER
		$(".imageSet a").hover(function () {
			
			// SET OPACITY TO 60%
			$(this).stop().animate({
				opacity: 0.6
			}, "fast");
		},
		
		// ON MOUSE OUT
		function () {
			
			// SET OPACITY BACK TO 100%
			$(this).stop().animate({
				opacity: 1.0
			}, "slow");
		});
	});


/*!!!!!!!!!!!!!!!!! this is the bottom fix to jquery and prodotype conflict !!!!!!!!!!!!!!!!!!!!!!!*/

})(jQuery); //* hide the namespace // 