/*======================================================================================================================================================
	Autotab Plugin (jQuery) [http://www.lousyllama.com/sandbox/jquery-autotab]
======================================================================================================================================================*/

$(function(){
	$('#phone1').autotab({ target: 'phone2', format: 'numeric' });
	$('#phone2').autotab({ target: 'phone3', format: 'numeric', previous: 'phone1' });
	$('#phone3').autotab({ previous: 'phone2', format: 'numeric' });


/*======================================================================================================================================================
	datepicker (jQuery UI)
======================================================================================================================================================*/

	// Datepicker

$(function(){	
	$('#date').datepicker({
		inline: true
	});
	
	//hover states on the static widgets
	$('#dialog_link, ul#icons li').hover(
		function(){ 
			$(this).addClass('ui-state-hover'); }, 
		function(){ 
			$(this).removeClass('ui-state-hover'); }
	);	
});