/**
 * Client Information
 *
 * Dallas Associated Dermatologists
 * http://www.paddallas.com
 * designed by Switch Creative Group
 * http://www.groupswitch.com
*/

$(document).ready(function(){
	

	/* Home Slider */
	/* ------------------------------------------------- */	
	if ($('#home_slider').length > 0 ) {
		
		$('#home_slider').anythingSlider({
													width: 1200,
													height: 375,
													buildNavigation: false,
													buildArrows: true,
													toggleControls: false,
													autoPlay: true,
													navigationFormatter: null,
													delay: 5000,
													startPanel: 1,
													onBeforeInitialize: function(slider){
  																					$('#home_gallery')
  																							.css({ 	'visibility':'visible', 
  																											'opacity':0 })
  																							.animate({'opacity':1}, 'slow');
 																					}
													});
	
	}
	


	/* Header Fade In */
	/* ------------------------------------------------- */		
	if ($('.entry_header').length > 0) {
		$('.entry_header').css({ 	'visibility':'visible', 
  														'opacity':0 })
  										.animate({'opacity':1}, 'slow');
	}
	
													
													
													
	/* Input Remember */
	/* ------------------------------------------------- */
	$('input[type=text], textarea').each(function(){
	
		var val = $(this).attr('value');
		
		$(this)
			.bind('click',function(){$(this).val('');})
			.bind('blur',function(){
				var a = $(this);
				if(a.val() == ''){a.val(val);}
		});
		
	});


	/* Input Date Picker */
	/* ------------------------------------------------- */
	$( ".datepicker" ).datepicker();
	$( ".datepicker_yr " ).datepicker({ changeYear: true, yearRange: '1920:2014' });


$(".fancybox").fancybox({
	
		openEffect	: 'fade',
		closeEffect	: 'fade',
		closeClick : 'true'

});



});
