$(document).ready(function() {

        var zoom = 1.1
        move = -10;

	$('#thumbnailwrap .wrap').hover(function() {

		width = $('.wrap').width() * zoom;
		height = $('.wrap').height() * zoom;
		var tmbcap = $(this).find('div.thumbcaption');
		var tmbcapp = $(this).find('div.thumbcaption p');
		$(this).find('a img').stop(false,true).animate({'width':width, 'height':height, 'top':move, 'left':move}, {duration:100});
		tmbcap.addClass('thumbcaptionon');
	},
	function() {
		var tmbcap = $(this).find('div.thumbcaption');
		var tmbcapp = $(this).find('div.thumbcaption p');
		tmbcap.removeClass('thumbcaptionon');
		$(this).find('a img').stop(false,true).animate({'width':$('.wrap').width(), 'height':$('.wrap').height(), 'top':'0', 'left':'0'}, {duration:100});
	});

});
