$(function() {
	
	
	
	$("#nav li.ready").hover(
      function () {
        $(this).animate({backgroundPosition: '0px 1px'}); 
      },
      function () {
        $(this).animate({backgroundPosition: '0px 148px'}); 
      }
    );
    
    $("#accordion").accordion({ autoHeight: false });
   

    $('#coda-slider').codaSlider();    	
	
	 $('.delete').click(function(){
 	   		return confirm('Are you sure you want to permanently delete this item?');
	 });
	 
	$( ".from" ).datepicker({
			changeMonth: true,
			changeYear: true,
			dateFormat: 'dd-mm-yy'
	});
		
	$( ".to" ).datepicker({
			changeMonth: true,
			changeYear: true,
			dateFormat: 'dd-mm-yy'
	});
	    
});



