$(document).ready(function(){
	if ($(".prod_image").size())
	{
		$(".prod_image a").each(function(){
			var link = $(this).attr("href");
			$(this).parent().next().children("h2:first").addClass("pointer");
			$(this).parent().next().children("h2:first").click(function(){
				document.location = link;
			});
		});
	}
});
