$j = jQuery.noConflict();

$j(document).ready (function() {
	$j('a.delete_property').click ( function() {
		var check = confirm ( 'Are you sure you want to delete this property?' );
		return check;
	});

	$j('table#single-property input, table#single-property select, table#single-property textarea').focus ( function() {
		$j(this).parents('tr').css('background-color' , '#FFE2E2' );
	});

	$j('table#single-property input, table#single-property select, table#single-property textarea').blur ( function() {
		$j(this).parents('tr').css('background-color' , '' );
	});

	$j('.datepicker').datepicker({ dateFormat : 'M d, yy', changeMonth: true, changeYear: true, yearRange: '-1:10' });

	$j('.tablesorter').each ( function() {
		$j(this).tablesorter().tablesorterPager({container: $j("#pager")});
	});

	$j('#application_form').accordion( { autoHeight: false } );

});
