/**
 * jQuery - Config file
 */
jQuery(document).ready(function($)
{
	/**
	 * Google Analytics
	 */
	$.googleAnalytics('UA-7202200-17');

	/**
	 * New Window Open
	 */
	$('a[href^="http"]').not('a[href^="http://'+ location.host +'"]').NewWinOpen();

	/**
	 * Image Rollover
	 */
	$('#gNavi a img').rollover();

	/**
	 * Wrapper background image
	 */
	$('body')
		.css('backgroundImage', 'url(/share/img/body_bg.jpg)')
		.find('#container')
			.wrapInner('<div id="wrap" />')
			.find('#wrap')
				.css('backgroundImage', 'url(/share/img/wrap_bg.jpg)')
			.end()
		.end()
	;
});

