$(function(){
	$('#gallery .rotate').nivoSlider({
	        effect: 'random', // Specify sets like: 'fold,fade,sliceDown'
	        startSlide: 0, // Set starting Slide (0 index)
	        directionNav: false, // Next & Prev navigation
	        controlNav: false, // 1,2,3... navigation
	        keyboardNav: false, // Use left & right arrows
	        animSpeed: 750,
	        pauseTime: 6000,
	        pauseOnHover: false, // Stop animation while hovering
	        manualAdvance: false, // Force manual transitions
	        captionOpacity: 0.8, // Universal caption opacity
	        prevText: 'Prev', // Prev directionNav text
	        nextText: 'Next', // Next directionNav text
	        randomStart: true // Start on a random slide
	    });

	$(".product_selector .cat_select").change(function(){
		var selector = $(this);
		
		var index = selector.children("option:selected").index();
		
		if(index) {
			selector.next().removeAttr("disabled");
		} else {
			selector.next().attr("disabled","disabled").children("option").first().attr("selected","selected");
		}
		
	});

	$("a[href$='.pdf'],a[href^='http://'],a[href^='mailto:']").attr("target","_blank").click(function(){ _gaq.push(['_trackPageview', $(this).attr('href')]); });
});

