	$(document).ready(function(){

				//Examples of how to assign the ColorBox event to elements.

$("a[href='http://www.warhorsemartialarts.com/signupform.php']").colorbox({width:"500", height:"80%", iframe:true});

			function myjavascriptf() {
			var url = 'index.php?action=home'; 
			window.location.href = url;
			
	$("#cover").css("display","none");
	$("#flashid").css("display","none");
	$("#content").css("display","block");
	$("#footer").css("display","block");
	$("#column-left").css("display","block");
	$("#column-mid").css("display","block");
} 
			
$("#home").click(function(event){
event.preventDefault(); //stop default browser behaviour
myjavascriptf();
});
			

			});
