$(function(){
    $(".myForm .businessbook_submit").attr("value","");
    var checkCookie = $.cookie("first_visit");
    if (checkCookie) {
        $("#flashcontent").hide();
	    $("#replay").show();
	} else {
	    var so = new SWFObject("http://www.freedombusinesscoaching.com/freedom_intro.swf","","180","180","8","#ffffff");
	    so.addParam("wmode","transparent");
	    so.write("flashcontent");
	    var timeout1 = setTimeout(function() {$(".myForm").seek({css:{ borderStyle: "solid",borderWidth: "2px",borderColor: "Red" },animation: { speed: 1000 }});}, 27000);
	    var timeout2 = setTimeout(function() { $("#flashcontent").hide(); $("#replay").fadeIn(); }, 33000);
	    $.cookie("first_visit","yes",{path:"/"});
	}
	$("#replay").click(function(){
		$(this).hide();
		var so = new SWFObject("http://www.freedombusinesscoaching.com/freedom_intro.swf","","180","180","8","#ffffff");
		so.addParam("wmode","transparent");
		so.write("flashcontent");
		$("#flashcontent").show();
		var timeout1 = setTimeout(function() {$(".myForm").seek({css:{ borderStyle: "solid",borderWidth: "2px",borderColor: "Red" },animation: { speed: 1000 }});}, 27000);
		var timeout2 = setTimeout(function() { $("#flashcontent").hide(); $("#replay").fadeIn(); }, 33000);
	});
    $(".media").media({ width:644,height:540 });
});