function test() {
	alert('action!');
}
$("a").click(function(event){
   alert("Thanks for visiting!");
 });
$(document).ready(function(){
	if ($("#menuItems").is(":hidden")) {
		//$("#menuItems").slideDown(700);
		$("#menuItems").show();
	}
	if ($("#contentBox").is(":hidden")) {
		$("#contentBox").hide().slideDown(1200);
	}
	//$("#menuItems").show();
	//$("#menuItems").animate({left: 10}, 1500);
	/*$("div").click(function(){
	if ( $(this).hasClass("protected") )
	    $(this)
		.animate({ left: -10 })
		.animate({ left: 10 })
		.animate({ left: -10 })
		.animate({ left: 10 })
		.animate({ left: 0 });
	});*/

});
//menuItems

