$(document).ready(function()
{
  $("div.footerbnr").mouseover(function ()
  {
    $(this).addClass("footerbnr_hover");
  });

  $("div.footerbnr").mouseout(function ()
  {
    $(this).removeClass("footerbnr_hover");
  });
});
$(document).ready(function(){
						   
	$(".footerbnr").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});



