// Clear Textbox values on click
function doClear(theText) {if (theText.value == theText.defaultValue) {theText.value = ""}}

$(document).ready(function() {						   
	//Show and hide the top contact
	$("a.readmorereviews").click(function() {
      $("#reviews").addClass("seeall");
      return false;
    });
});
