$j(document).ready(function() {

	$j("#window .homebutton.first").live('click', function(e) {
		e.preventDefault();
		$j("#window .homebutton").hide();
		$j("#window .content .image").hide();
		$j("#window .content .player").show();
	});

});

function switchWindow(slug) {
	$j.get("frontpages/window", { 'slug' : slug }, function(r) {
		$j("#window").html(r);
		$j("#window .homebutton").show();
		$j("#window .content .image").show();
		$j("#window .content .player").hide();
	});
}
