(function( $ ){	
	$(function(){
				
		$(".prod-images").fancybox({
		'hideOnContentClick': true
		});	

		$('#slideImages').nakedSlideshow({
			controls : '#slideControls li',
			circular: true,
			inactive: function(children, callback, first){
				if( first ){
					children.css('opacity', 0);
					callback();	
				}else{
					children.animate({opacity: 0}, 250, function(){
						children.hide();
						callback();
					});
				}
			},
			active: function(slide){
				slide.show().animate({opacity: 1}, 250);
			}			
		});

		$('.widget-latest li').mouseenter(function(){
			$(this).find('.roll').animate({left: 0}, 250);
		});
		
		$('.widget-latest li').mouseleave(function(){
			$(this).find('.roll').animate({left: -532}, 250);
		});
	});
})(jQuery);


