$(document).ready(function(){

	$("input.dateBox").datepicker();
  $('a[rel*=facebox]').facebox();


	// Clear search box when you clickitalics()t
	$("input.txtClear").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	}); 
	


	// Show Hide tables on Calendar Page
	$('a.showRow').click(function(){
		//if ( $(this).next('tr.hideRow').css('display') == "none" ) {
			$(this).parent().parent().next('tr.hideRow').fadeIn(300);
			$(this).fadeOut(100);
		//}
		return false;
	});
	
});


