Having trouble moving an image to a new position when clicking on its small thumbnail. I've attempted using jquery's find() function but it doesn't seem to be working...
$('#slide1_controls img').click(function (event){
var srcs=$(this).attr("src");
$('#slide-frame').find("img[src=srcs]").animate({
"left": "+=350px"
}, {
"queue": false,
"duration": 1000
}).animate({
'opacity': '1'
});
});