$(document).ready(function () {


	// make block clickable
	$(".areaClick").click(function(){
	  goto = $(this).find("a.go").attr("href"); 
	  if(goto) {window.location = goto; return false;}
	  else void(null);
	});
	
	
	// offer picture replacement
	$("div.offer").each(function(index) {
		 var newpic = $(this).children(".hiddenCont").find("img:first").attr("src")
		 $(this).find("img.th:first").attr("src",newpic)
	 });
		
});
