function getFeaturedCompanies (){
	$.ajax({
		type: "GET",
		url: "/companies/getFeaturedCompanies",
		data: "",
		success: function(msg){
			$("#fc").html(msg);
		}
	});
}
function clearInput(obj,sVar){
    if(obj.value==""){
  	  obj.value=sVar;
    }
    else if(obj.value==sVar){
      obj.value="";
    }
}