$(document).ready(function() {
	$("#myController").jFlow({
        slides: "#mySlides",
        width: "100%",
        height: "230px",
        duration: 400
    });
	
	$("div.boxProduct2").mouseover(function(){
		$(this).removeClass('boxProduct2');
		$(this).addClass('boxProductHover2');
	}).mouseout(function(){
		$(this).removeClass('boxProductHover2');
		$(this).addClass('boxProduct2');
		
	});
	
	$("div.boxProductNew2").mouseover(function(){
		$(this).removeClass('boxProductNew2');
		$(this).addClass('boxProductHover2');
	}).mouseout(function(){
		$(this).removeClass('boxProductHover2');
		$(this).addClass('boxProductNew2');
	});
	
	$("div.box3").mouseover(function(){
		$(".img", this).hide();
		$(".product_desc", this).show();
	}).mouseout(function(){
		$(".product_desc", this).hide();
		$(".img", this).show();
	});
	
}); 