/**
  *	Samjay Productions
  */
  
  function shoutMessage(){
	// hide reageer knop ofzo
	var naam = jQuery("#txtnaam").val();
	if(naam.length < 2 || naam.length > 30 || naam == "Naam"){
		errorField("txtnaam");
		return false;
	}
	var bericht = jQuery("#txtbericht").val();
	if(bericht.length < 2 || bericht.length > 300 || bericht == "Bericht"){
		errorField("txtbericht");
		return false;
	}
	jQuery("#shoutbox").fadeOut(500);
	jQuery("#shoutloading").fadeIn(100);
	jQuery.ajax({
		type: "POST",
		data: {serv : 'shout', naam : naam, bericht : bericht, ch : 'samjay'},
		success: function(result){
			jQuery("#shoutbox").html(result);
			jQuery("#shoutbox").fadeIn(1000);
			jQuery("#shoutbox").ready(function(){
				jQuery("#shoutloading").fadeOut(100);
			});
		}
	});
  }
  
	function errorField(fieldid){
		var errorfield = document.getElementById(fieldid);
		errorfield.style.border="1px solid #FF0000";
	}
  
  function focusVeldje(field){
	if(field.value=="Naam"||field.value=="Bericht"){
		field.value="";
	}
	field.style.borderColor = "";
	field.style.backgroundColor = "#CCCCCC";
  }

  function blurVeldje(field){
	if(field.value==""){
		field.value=field.title;
	}  
	field.style.backgroundColor = "";
  }
