$(document).ready(function()
{
    $(".text").focus(function(srcc)
    {
        if ($(this).val() == $(this)[0].title)
        {
            $(this).removeClass("defaultTextActive");
            $(this).val("");
        }
    });
    
    $(".text").blur(function()
    {
        if ($(this).val() == "")
        {
            $(this).addClass("defaultTextActive");
            $(this).val($(this)[0].title);
        }
    });
    
    $(".text").blur();        
});


function clearText(){
	  
	  var loc = document.getElementById('loc');
	  if (loc.value == loc.title){
		loc.value ="";
	  }
	  
	 var qt = document.getElementById('qt');
	  if (qt.value == qt.title){
		qt.value ="";
	  }
	  
}

function clearFAQText(){
	  	  
	 var faqqt = document.getElementById('faqqt');
	  if (faqqt.value == faqqt.title){
		faqqt.value ="";
	  }
	  
}
