//Image Carousel
jQuery.noConflict();
jQuery(function($){
   $('#carousel').cycle({ 
    fx:    'fade', 
    pause:  1 
	});
});

//List item Hovers
jQuery(function($){
   $('.products-grid li').hover(
		function ()
		{
			$(this).children('.product-image').animate({
				opacity: 0.6
			});
		},
		function ()
		{
			$(this).children('.product-image').animate({
				opacity: 1
			});
		});
});

//List item Hovers
jQuery(function($){
   $("a#sample-btn").fancybox({
		'hideOnContentClick': false
	});
});
