
	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

	<script type="text/javascript" src="jquery.bxcarousel.js"></script>
	
	<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.1.pack.js"></script>
	<link rel="stylesheet" href="fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen">
	
	<script type="text/javascript">
	$(document).ready(function(){
	
		$("a.fancy-image").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	200, 
			'speedOut'		:	200, 
			'overlayShow'	:	false
		});

	
		$('#slides').bxCarousel({
			display_num: 5,       // number of elements to be visible
			move: 1,              // number of elements to the shift the slides
			speed: 1000,           // number in milliseconds it takes to finish slide animation
			margin:12,             // right margin to be applied to each <li> element (in pixels, although do not include "px")
			auto: true,          // automatically play slides without a user click
			auto_interval: 2500,  // the amount of time in milliseconds between each auto animation
			auto_dir: 'next',     // direction of auto slideshow (options: 'next', 'prev')
			auto_hover: false,    // determines if the slideshow will stop when user hovers over slideshow
			next_text: 'next',    // text to be used for the 'next' control
			next_image: '',       // image to be used for the 'next' control
			prev_text: 'prev',    // text to be used for the 'prev' control
			prev_image: '',       // image to be used for the 'prev' control
			controls: false        // determines if controls will be displayed
		});
		
		
		
		/*//Full Caption Sliding (Hidden to Visible)
		$('.product-block').hover(function(){
			$(".product-info", this).stop().show();
		}, function() {
			$(".product-info", this).stop().hide();
		});*/
		
	});
	
	</script>
	
