//------------------- for clearing and replacing text in form input fields and textareas -------------------//
function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
} 
function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}


$(document).ready(function(){
  // Add Scroller Object
  $jScroller.add("#testimonials_container","#testimonials","up",1.5);

  // Start Autoscroller
  $jScroller.start();
});
