// JavaScript Document

$(document).ready(function() {
	$('.homeBlock:has(p a)').each(function() {
			var url = $('p a', this).attr('href');
			$('img', this).wrap('<a href="'+url+'"></a>');
		}
	);
});

$(window).load(function() {
	$("#gallery a[rel=zoomableImage]").thumbs(); // the wrapping function
	$("#gallery a[rel=zoomableImage] img").thumbsImg(); // the img positioning function (optional)
	/*
	$(".mainImage a").thumbs(); // the img positioning function (optional)
	$(".mainImage a img").thumbsImg(); // the img positioning function (optional)
	*/
});

