$(document).ready(function(){
	$("input[type=text], textarea").simpleWaterMark('watermark');
	// PNG Fix
	$(document).pngFix();
  
  if(document.location.href.match(/\/about-us\/testimonials\//)) {
    $('blockquote').slideUp(0);
    $('h5').css({ cursor: "pointer" }).append(' <span class="show_hide">show</span>').toggle(function() {
      $(this).next('blockquote').slideDown();
      $(this).children('span').text('hide');
    }, function() {
      $(this).next('blockquote').slideUp();
      $(this).children('span').text('show');
    });
  }
});

function practiceTabs(tab){
	$("#right-wrapper li").removeClass('active');
	$("#right-wrapper li:eq("+tab+")").addClass('active');
	$("#practice-info .middle").slideUp('slow');
	$("#practice-info .middle:eq("+tab+")").slideDown('slow', function() {
    if(tab == 1) {
      var lat = map.center.b;
      var lng = map.center.c;
      google.maps.event.trigger(map, 'resize');
      map.setCenter(new google.maps.LatLng(lat, lng));
    }
  });
}

