$(document).ready(function(){

$("#couture a").click(function(){
return false;
});

$("#couture a").hover(function(){
$("#couture a").removeClass().addClass("idle");
}).hover(function(){
$(this).removeClass().addClass("active");
   
var path = $(this).attr("href");
var alt = $(this).attr("title");		
$("#slides").attr({ src: path, alt: alt }); return false;
});

});