$(document).ready(function() {

	//Part 1
	$("div").filter(".linkbox").hover(
									  
	function() {
	$(this).addClass("linkbox_hover"); //change style for hover effect
	$(this).css("cursor","pointer"); 
	},
	function() {
	$(this).removeClass("linkbox_hover"); //remove style
	});
	
	//Part 2
	$("div").filter(".linkbox").click(function() {
	var thelink = $(this).find('a').eq(0).attr("href");
	window.open(thelink,'_self',''); //別窓を開くときは_open
	return false;
	});
	

}); //END DOC READY


$(document).ready(function() {

	//Part 1
	$("li").filter(".linkbox").hover(
									  
	function() {
	$(this).addClass("linkbox_hover"); //change style for hover effect
	$(this).css("cursor","pointer"); 
	},
	function() {
	$(this).removeClass("linkbox_hover"); //remove style
	});
	
	//Part 2
	$("li").filter(".linkbox").click(function() {
	var thelink = $(this).find('a').eq(0).attr("href");
	window.open(thelink,'_self',''); //別窓を開くときは_open
	return false;
	});
	

}); //END DOC READY