
$('document').ready(function() {
							 /*
	//for taglines
	var taglines=new Array();
	taglines[0]="Paint Plastic Pottery";
	taglines[1]="Philadelphia Phabricating Phacility";
	taglines[2]="Pretty Penguine Parade";
	taglines[3]="Philly Printing Palace";
	taglines[4]="Photos, Prints, Phriendship";
	taglines[5]="Purple Pickles Please";
	taglines[6]="Philly\'s Phatest Press";
	taglines[7]="Puffy Pastery Place";
	taglines[8]="Paper Pen &amp; Pencil";
	taglines[9]="Plates, Pots &amp; Pans";
	taglines[10]="Pine, Passyunk &amp; Patterson";
	
	
	$("#logo").click(function(){
		var randomNum = Math.floor(Math.random()*11);
		while($("#tag_line").html(taglines[randomNum]) == $("#tag_line").html()){
			randomNum = Math.floor(Math.random()*11);
		}
		$("#tag_line").html(taglines[randomNum]);
	});
	*/


	// ajax message for forms
	$('#email').ajaxForm(function() { 
		$("#message_window").html("Thanks for your support.<br/> We'll contact you when we're about to open!"); 
		$("#message_window").show();
		$(this).delay(3000,function(){
			$("#message_window").fadeOut(2000);						   
		});
	});
	
	$('#survey_form').ajaxForm(function() { 
		$("#message_window").html("Thanks for helping us build a better community.");
		$("#message_window").show();
		$(this).delay(3000,function(){
			$("#message_window").fadeOut(2000);						   
		});
	});
	$('#contact_form').ajaxForm(function() { 
		$("#message_window").html("Thanks for the message. We value your opinion."); 
		$("#message_window").show();
		$(this).delay(3000,function(){
			$("#message_window").fadeOut(2000);						   
		});
	}); 
});