$(document).ready(function(){
	var toggle = 0;
	$('#showguide_reviews li').click(function() {
		if ($('.reviewcontainer .full', this).css('display') == 'none') {
			$('.headercontainer', this).css('background', 'url(images/common/bt_downarrowyellow.gif) no-repeat top left');
		} else {
			$('.headercontainer', this).css('background', 'url(images/common/bt_rightarrowyellow.gif) no-repeat top left');
		}
		$('.reviewcontainer div', this).toggle('fast');
		$('.headercontainer div', this).toggle('fast');
		return false;
	});
	
	$("a.fancybox").fancybox({
		'padding': 0,
		'overlayOpacity': 0.4,
		'frameWidth': 650,
		'frameHeight': 550,
		'hideOnContentClick': false
	});
	
	$("a.fancybox_flvvideo").fancybox({
		'padding': 0,
		'overlayOpacity': 0.4,
		'frameWidth': 640,
		'frameHeight': 360,
		'hideOnContentClick': false
	});
	
	$('#showguide_roster').hover(
		function() { 
			$('#showguide_rosternav', this).show();
			$('#sgn_showroster').attr('src', 'images/showguide/sgn_showroster_over.gif');
		},
		function() {
			$('#showguide_rosternav', this).hide();
			$('#sgn_showroster').attr('src', 'images/showguide/sgn_showroster.gif');
		}
	);
});
	
function closeFancybox() {
	$.fn.fancybox.close();
}

function submitEmailClub(email) {
	$.ajax({
		type: "POST",
		url: "http://emailclub.cinematictitanic.com/form.php?form=1",
		data: "email="+email
	});
}
