$(document).ready(function(){

	// Light windows
	$("#download-now").colorbox({inline:true, href:"#download-now-full", overlayClose: false});
	//$("#the-word, #banners_link").colorbox({inline:true, href:"#spread-the-word-full", overlayClose: false});
	$("#signup").colorbox({href:"signup.php"});

	$("#the-word, #banners_link").click(function() {
		window.open("share","comments","status=0,toolbar=0,width=880,height=785,scrollbars=1");
		return false;
	});
	
	// Add a comment
	$("#comments").click(function() {
		window.open("comments.php","comments","status=0,toolbar=0,width=600,height=650,scrollbars=1");
		return false;
	});

	$("input[name='subscribe']").click(function(){
		if($("#mce-MMERGE15").val() == "ZIP CODE"){
			alert("Please enter a valid zip code");
			return false;
		}
	});

});