$(document).ready(function() {
   
/* form layout and FX */
    $(':input').addClass("idleField");  
    $(':input').focus(function() {  $(this).removeClass("alert").removeClass("idleField").addClass("focusField");  });  
    $(':input').blur(function() {  
    	$(this).removeClass("focusField")
    	if ($(this).val()=="") $(this).addClass("alert");  
    });  
/* Message sending */
	$("#mailto button").click(function(){
		/* each input must be filled */
		var checkForm = true;
		$(":input").each(function(){
			if($(this).val() == "") { $(this).addClass("alert");checkForm = false;	}
			else $(this).removeClass("alert");});
		if (checkForm){
			$(this).hide();$(".ajax-loader").show();
			postArray = $("#mailto :input").serializeArray();
			$.post("../common/submit.php",postArray,function(data){	$("#mailto").html("<img src='../pictures/ico-mail.gif' alt='Mail'><h2>OK!</h2><p>Mail sent. Thank you.</p>"+data);		});		
		}
		return false;
	});
	/* external clicks */
	$("a[href^=http]").click(function(){window.open($(this).attr("href"));return false;});	
	/* ask for video */
	if (window.location.toString().indexOf("video")>0) $("#video").trigger("click");
});



