$(document).ready(function() { 
	// Datepicker
	$('#datefrom').datepicker();
	$('#dateto').datepicker();
	
	$("#myTable")
	.tablesorter({ 
        // pass the headers argument and assing a object 
        headers: { 
            // assign the secound column (we start counting zero) 
			4: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            },
			// assign the secound column (we start counting zero) 
            5: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            }
        } 
    });		
	$(".clear").focus(function() {
		if ($(this).val() == "Your email address") {
			$(this).val('');
		}
	});

	
});

