function flashcomplete() {
	jQuery(".revealer").click();
};

function redir(){
    window.location = "pages/portfolio.html"
}
$(document).ready(function() {
	$("#flash").flash({
		swf: "flash/splash.swf", width: "790", height: "612"
	});
	$("#wrapper").hide();
	$("#splash").show();
	$('#wrapper').load('home.html #homecontent','')
	$(".revealer").click(function() {
		$("#splash").hide();
		$("#wrapper").show();
		setTimeout('redir()', 500);
		return false;
	});
});
