/**
 * jQuery - Config file
 */
jQuery(function($) {
	/**
	 * Google Analytics
	 */
	$.GATracker('UA-7202200-19');

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

	/**
	 * Image Rollover
	 */
	$('#gNavi a img, #subinfo a img').not('a img', 'li > ul, div.twitter').rollover();

	$('#choices div.section > *').not('h3').addClass('root');

	$('dl.rate').each(function() {
		var self = $(this);
		self.css('marginTop', self.prev().innerHeight() - self.innerHeight() - 1);
	});

	$('#photos li').each(function(i) {
		if (i % 2 === 0)
			$(this).addClass('odd');
		else
			$(this).addClass('even');
	});
});
