jQuery(document).ready(function(){

	jQuery("#b1 a:first-child").attr("href", jQuery("#b1 a:eq(1)").attr("href"));
	jQuery("#b2 a:first-child").attr("href", jQuery("#b2 a:last-child").attr("href"));
	jQuery("#b3 a:first-child").attr("href", jQuery("#b3 a:last-child").attr("href"));
	jQuery("#b4 a:first-child").attr("href", jQuery("#b4 a:last-child").attr("href"));

	jQuery("#banner_send a:first-child").attr("href", jQuery("#banner_send a:last-child").attr("href"));


	jQuery(".bg").click(function(){
		document.location = jQuery(this).find("a").attr("href");
	});

	jQuery(".bg").hover(function(){
		jQuery(this).css("cursor", "pointer"),
		function(){
			jQuery(this).css("cursor", "default");
		}
	},
	function(){});

});
