$(document).ready(function() {
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
      $('#check_icon').fadeTo("slow", 0.70);	
});
function barf() {
	//alert('here');
	$('#check_icon').fadeTo("slow", 1);
}
var sURL = unescape(window.location.pathname);
$(document).ready(function() {
	$("a.group").fancybox({
		'type' : 'iframe',
		'width'		:	900,
		'height'	:	600
	});
	$("#open_email").fancybox({
		'href' : 'http://www.thrusterslounge.com/email_signup.html',
		'type' : 'iframe',
		'width'		:	250,
		'height'	:	200
	});	
	$("a.gal_videos").fancybox({
	});
	$("a.gal_photos").fancybox({
	});
	$("a.inline").fancybox({
	
	});				
});
function fancyclose() {
	$.fancybox.close();
	window.location.href = sURL;
}
$(
	function()
	{
		// set up rollover
		$(".rollover_off").hover(
			function()
			{
				this.src = this.src.replace("_off","_on");
			},
			function()
			{
				this.src = this.src.replace("_on","_off");
			}
		);
	}
)
