$(document).ready(function(){
	$('#main-banner').nivoSlider({
		directionNav: false
	});
	
	
	$('#new-products a.productbox span').css({ 'height' : 0 });
	
	$('#new-products a.productbox').hover(function(){
		$(this).children('span').stop().animate({ 'height' : 35 }, 350);
	}, function(){
		$(this).children('span').stop().animate({ 'height' : 0 }, 350);
	});
	
	
	$('#special-offer ul').anythingSlider({
		buildNavigation: false,
		buildStartStop: false,
		autoPlay:true
	});
	
	
	$('#new-products ul').anythingSlider({
		buildNavigation: false,
		buildStartStop: false,
		autoPlay:true
	});
	
	
});
