$(document).ready(function() {
	
	// "Page" image rotation (large, not clickable)
	$(function() {
		$( ".accordion" ).accordion({
			autoHeight: false,
			collapsible: true,
			active: false			
		});
	});
	
    $('.nivo-gallery').nivoSlider({
    	effect: 'random',
    	animSpeed: 350,
    	pauseTime: 5000,
    	pauseOnHover: true,
    	controlNav: true
    });

	// Lightbox:
	$('.product-picsprice dt img').each(function(){
		var loc = $(this).attr('src');
		$(this).wrap('<a href="'+loc+'" rel="'+$(this).parent().parent().attr('rel')+'"/>');
	});
		
	$(".product-picsprice dt a").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	200
	});
	
	
	
	
/* Main Page Contact Form */

/* End Main Page Contact Form */
	
});

