// JavaScript Document

$(document).ready(function() {
	$('.thumb').each(function() {
		$(this).find('.caption').prepend('<div class="captionBg"></div>');
		$(this).hover(
			function() {
				$(this).find('.caption').stop().animate({'right': '0'},250);
				$(this).find('img').stop().animate({'left': '-50'},250);
			},
			function() {
				$(this).find('.caption').stop().animate({'right': '-145'},250);
				$(this).find('img').stop().animate({'left': '0'},250);
			}
		);
		$(this).click(function() {
			window.location = ($(this).find('a').attr('href'));
		});
	});
});
