// customize: Takao Tagawa @ Monkey Works

$(document).ready(function() {
	// remove href
	$("div.box-business").hover(function(){
		$(this).css("cursor","pointer");
		$(this).css("background-image","url(../img/business/bg-box-bottom-over.gif)");
		// remove href
		$($($($($(this).children()[0]).children()[2]).children()[0]).children()[0]).removeAttr("href");
	},function(){
		$(this).css("cursor","default"); 
		$(this).css("background-image","url(../img/business/bg-box-bottom.gif)");
		$($($($($(this).children()[0]).children()[2]).children()[0]).children()[0]).attr("href","#");
	});
	$("div.box-business-inner").hover(function(){
		$(this).css("cursor","pointer");
		$(this).css("background-image","url(../img/business/bg-box-upper-over.gif)");
		$($($($(this).children()[2]).children()[0]).children()[0]).css("background-image","url(../img/common/arrow-circle-blue03-right.gif)");
	},function(){
		$(this).css("cursor","default"); 
		$(this).css("background-image","url(../img/business/bg-box-upper.gif)");
		$($($($(this).children()[2]).children()[0]).children()[0]).css("background-image","url(../img/common/arrow-circle-blue-right.gif)");
	});
});