function jobalert()
{$('#maincontactmain').animate({opacity: "show", top: "2%"}, "slow");$("#errorbox").hide();}
function jobalertclose()
{$('#maincontactmain').animate({opacity: "hide", top: "-315"}, "slow");}

function jobalertcontact()
{$('#contactmsg').animate({opacity: "show", top: "2%"}, "slow");$("#errorboxmail").hide();}
function jobalertcontactclose()
{$('#contactmsg').animate({opacity: "hide", top: "-315"}, "slow");}

function checkfriendfunction()
{
var name = document.getElementById("name");
var emailname = document.getElementById("emailname");
var sendto = document.getElementById("sendto");
var subject = document.getElementById("subject");
var message = document.getElementById("message");
var errorbox = document.getElementById("errorbox");
if(name.value=="Name" || emailname.value=="eMail" || sendto.value=="Send to" || subject.value=="Subject" || message.value=="Message")
{
 errorbox.style.display='inline';
 return false;
}
}
function Cotactusvalid()
{
	var MessageContact = document.getElementById("MessageContact");
	var ContactName = document.getElementById("ContactName");
	var ContactEmail = document.getElementById("ContactEmail");
	var errorboxmail = document.getElementById("errorboxmail");
if(MessageContact.value=="Message" || ContactName.value=="Name" || ContactEmail.value=="eMail")
{
 errorboxmail.style.display='inline';
 return false;
}
}
