

// _blank link class blank

$(document).ready(function(){
　　$(".blank").click(function(){
　　　　window.open(this.href,'_blank');
　　　　　　return false;
　　　　});
});



/*

// Half Box Right margin

$(function(){
     $("div.halfArea div:odd").addClass("halfR");
});









// #gNav current


$(document).ready(function() {
	if(location.pathname != "/") {
		$('#gNav a[href^="/' + location.pathname.split("/")[1] + '"]').addClass('current');
	} else $('#gNav a:eq(0)').addClass('current');
});








// #lMenu current


$(function(){
	$page = jQuery.url.attr('path');
	if(!$page) {
		$page = 'index.html';
	}
	$('#lMenu ul li a').each(function(){
		var $href = $(this).attr('href');
		if ( ($href == $page) || ($href == '') ) {
			$(this).addClass('current');
		} else {
			$(this).removeClass('current');
		}
	});
});


*/



