$(document).ready(function() {

$('.frame a').each(function() {
 var img_url = $('img', this).attr('src');
 $(this).attr('href', img_url.replace('width=380', 'width=750'));
});

$('.thumbnails a').css("opacity",0.75);

$('.thumbnails a').hover(function() {
 $(this).animate( { opacity:1 } , 200 );
 },
 function() {
  $(this).animate( { opacity:0.75 } , 200 );
});

$('.thumbnails a').click(function() {
 $('.frame img').attr('src', $(this).attr('href'));
 $('.frame a').attr('href', $(this).attr('href').replace('width=380', 'width=750'));
 return false;
});

});