$(function() {
	$("#fmail").focus(function() {
		if ($(this).val() == "your e-mail address") {
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val() == "") {
			$(this).val("your e-mail address");
		}
	});
	   
	$("#f1").click(function() {
		$.ajax({
  			type: "POST",
			url: "remote/n.php",
			data: "n="+$("#fmail").val(),
			success: function(msg){
				$("#fmail").val("your e-mail address");
				Shadowbox.open({
				    player:       'iframe',
			        content:    'form_news.php',
          			height:     570,
		          	width:      550   
				});
			}
		});
	});
	
	$(".submenu").click(function(e) {
		e.preventDefault();
		$(this).toggleClass("menuPink").next().slideToggle(700);
	});
		
});
