/* ------------------------------
 opacity-rollover
------------------------------ */
$(function(){
	$('.opacity').wink();
});

/* ------------------------------
 stripe
------------------------------ */

$(function(){
	$('ul#schedule li:even').addClass('odd');
	$('div.detail table.stripe tr:nth-child(odd)').addClass('odd');
});

/* ------------------------------
 biggerlink
------------------------------ */

$(function() {
		// Supporting target _blank
		$('a[target="_blank"]').click(function(){
			window.open(this.href);
			return false;
		});
	$('.link').biggerlink();
});

