$(document).ready(function() {

 	// Scroller functions for doctor images
	$('#rotator').bxSlider({
		auto: true,
		easing: 'easeInOutExpo',
        speed: 800,
		pause: 5000,
	});

	// watermarking the search box
	$(".searchbox").watermark("Search by name, specialty or zip code      ");

	// Set the four containers to the same height
	$('div.rsz').setAllToMaxHeight();

	// Contact form handler
	$('#contactform').submit(function(){
	
		var action = $(this).attr('action');
		
		$('#contactform #submit').attr('disabled','disabled').after('<img src="../theme/assets/images/icons/ajax-loader.gif" class="loader" />');
		
		$("#message").slideUp(750,function() {
		$('#message').hide();			
		
		$.post(action, { 
			name: $('#name').val(),
			email: $('#email').val(),
			phone: $('#phone').val(),
			subject: $('#subject').val(),
			comments: $('#comments').val(),
			verify: $('#verify').val()
		},
			function(data){
				document.getElementById('message').innerHTML = data;
				$('#message').slideDown('slow');
				$('#contactform img.loader').fadeOut('fast',function(){$(this).remove()});
				$('#contactform #submit').removeAttr('disabled'); 
				if(data.match('success') != null) $('#contactform').slideUp('slow');
				
			});
		
		});
		
		return false; 
	
	});
});

// sizing function
$.fn.setAllToMaxHeight = function(){
return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
}
