$(document).ready(function(){	//ie6 png fix	$(document).pngFix();			//tipTop	$(".tooltip").tipTip();		//auto-hint inputs	$("input, textarea").focus(function(){		if ($(this).val() == $(this).attr("title")) {			$(this).val('');		}	}).blur(function(){		if ($(this).val() == '') {			$(this).val($(this).attr("title"));		}	}).each(function(){		if ($(this).val() == '') {			$(this).val($(this).attr("title"));		}	});			//home feature rotation				//custom effect for home feature		$.tools.tabs.addEffect("home_feature", function(tabIndex, done) { 					// hide all panes and show the one that is clicked 	 		this.getPanes().fadeOut('slow').delay(500).eq(tabIndex).fadeIn('slow');		 				// the supplied callback must be called after the effect has finished its job 			done.call(); 		});			$("#home_feature #feature_nav").tabs("#panels > div", {  				current: "active", 		 		// enable "cross-fading" effect  		effect: 'home_feature', 		// start from the beginning after the last tab 		rotate: true 	// use the slideshow plugin. It accepts its own configuration 	}).slideshow({				autoplay: true,		interval: 7000			});			// Gallery image caption (captify)	//$('.gallery img').captify();			// Gallery image lightbox (colorbox)	$('.gallery .image a').colorbox({		transition: "fade",		slideshow: true,		slideshowSpeed: 4000,		slideshowStart: "Play Slideshow",		slideshowStop: "Pause"	});			// Definition Expander	/*	$('dl.expander dd').slideUp('slow');		var textColor = $('dl.expander dt').css('color');	$('dl.expander dt')		.css('cursor','pointer')		.hover(function() {			$(this).css('color', '#000');		},		function() {			$(this).css('color', textColor);		})		.click(function() {		$(this).next().slideToggle();	});	*/			// Calendar switcher	$(".calendarMonthLinks a").live('click', function() {		var path = $(this).attr("href");		path = path.replace('calendars', 'calendars/calendar');		$("#calendar").load(path);		return false;	});			// Calendar switcher	$("#nav_level1 ul li").hover(function() {		$(this).addClass('hover');	}, function() {		$(this).removeClass('hover');	});	});
