$(document).ready(function() {
	$("#shiftmatch").mouseover(function() {
		showProduct("shiftmatch");
	});
	$("#seatmatch").mouseover(function() {
		showProduct("seatmatch");
	});
	$("#shiftbid").mouseover(function() {
		showProduct("shiftbid");
	});
	
	$("#shiftmatch").mouseout(hideProduct);
	$("#seatmatch").mouseout(hideProduct);
	$("#shiftbid").mouseout(hideProduct);

	$("#screenshot").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'fade',
				'transitionOut'	: 'fade',
				'title'			: this.title,
				'width'			: 760,
				'height'		: 500,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
				'type'			: 'swf',
				'swf'			: {
				'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
				}
			});
		return false;
	});

    setTimeout("flashTour()", 1250);
});

function showProduct(product) {
	$("h3").hide();
	$("p").hide();
	$("#" + product + "_head").show();
	$("#" + product + "_para").show();
}

function hideProduct() {
	$("h3").hide();
	$("p").hide();
	$("#home_head").show();
	$("#home_para").show();
}


function flashTour() {
	$("#tour_button").show("slide");
}

