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

	/**
	 * Image Rollover
	 */
	$('a > img', '#header ul.subNavi, #gNavi, #sidebar, #footer ul.banner, p.orderLink').rollover();

	/**
	 * Lightbox
	 */
	$('#central a[href$=".jpg"]').lightBox();

	$('img.alphafilter').pngfix();
});

