var maxW = 380;
var minW = 70;
var lastSlide = null;

$(function(){
	$('ul#home_slides .hide').hover(
		function(){
			/*closeSlide(minW);
			openSlide(this,maxW);*/
			
			if(lastSlide != null){
				lastSlide.animate({width: minW+"px", opacity: 1}, {queue: false, duration: 400});
			}
			
			lastSlide = $(this);
			$(this).animate({width: maxW+"px", opacity: 0}, {queue: false, duration: 400});
		}
	);

	$('#slide_1 .hide').animate({width: maxW+"px", opacity: 0}, {queue: false, duration: 400});
	lastSlide = $('#slide_1 .hide');


	$('#home_new_product a').hover(
		function(){
			$(this).children('.bw').children('.color').fadeIn('fast');
		},
		function(){
			$(this).children('.bw').children('.color').fadeOut('fast');
		}
	);

});
