$(document).ready(function() {
		$(':text:visible:enabled:first').focus();
		$('li.top_warning').hide();
		
		$('.my_text_input,.my_text_area').hover(
		function() {$(this).css('border-color','#999999');
    	},
		function() {$(this).css('border-color','#CCCCCC');
    	});
		$('.my_text_input,.my_text_area').focus(
		function() {$(this).css('background-color','#dbd4d4');
    	});
		$('.my_text_input,.my_text_area').blur(
		function() {$(this).css('background-color','#FFFFFF');
    	});
	});

$(function() {
	$("#datepicker").datepicker({dateFormat: 'dd-mm-yy'});
	if ($("#datapicker1")){
		$("#datepicker1").datepicker({dateFormat: 'dd-mm-yy'});
	}
});

$(function() {
	$(".tipz").tooltip({showURL: false});
});
$(function() {
	$("#tabs").tabs();
});


