// JavaScript Document

// make the links inside the banner blocks span the whole div

$(document).ready(function(){
						   
	$(".content_add div").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

}); //close doc ready


