// Application JS

$(document).ready(function(){
	
	
	$('input.datepicker').datepicker({changeMonth: true, changeYear: true, dateFormat:'dd/mm/yy'}); 
	
	// Auto clear text box
	$(".clear_default").each(function(index, element){
		$(element).focus(function(){
			if(this.value == this.defaultValue) this.value = ''
		})
	})
	
	//$('#callback_form_wrapper').hide();
	$('.callback_form_trigger').live("click", function(){ $('#callback_form_wrapper').toggle(); });
	

	setTimeout(function()
			{
				$('.flash').fadeOut(); 
		
			}, 2000); 
	
});
