/*custom effects for dum spiro spero shoes*/

/*fade-in image*/
$(document).ready(function(){
$(".fade_img").fadeTo("slow", 0.3);
$(".fade_img").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.3);
});
});

/*fade-in text*/
$(document).ready(function(){
$(".fade_text").fadeTo("slow", 0.3);
$(".fade_text").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.3);
});
});