/**
 * jQuery - Config file
 */
jQuery(function($) {
	/**
	 * Window Open
	 */
	$('a[href^="http"]').not('a[href^="http://'+ location.host +'"]').each(function() {
		$(this).attr('target', '_blank');
	});

	/**
	 * Image Rollover
	 */
	$('#gNavi > ul > li > a img').rollover();
});

