// JavaScript Document for Fade in Out effect

$(document).ready(function () {
	
	$(".dynamic li").hover(function() {
	    $(this).find("span").stop().animate({marginLeft: "10"}, 250);
			},function() {
		$(this).find("span").stop().animate({marginLeft: "0"}, 250);
	});
				
	$(".photo img").fadeTo(1, 1);
	$(".photo img").hover(function () {
        $(this).fadeTo("fase", 0.6);},function () {
			$(this).fadeTo("slow", 1);
	});
	
	$(".slider-control img").mouseover(function () {
        $(this).fadeTo("fase", 1).addClass("cur");
	}).mouseout(function(){
	    $(this).fadeTo("slow",0.6).removeClass("cur")	
	});
	
	$(".sale").mouseover(function() {
	    $(".buy").show();	
	}).mouseout(function() {
	    $(".buy").hide();	
	});

});
