 // for PNG support IE 5.5 and 6 if (document.all && /MSIE (5\.5|6)/.test(navigator.userAgent) &&  document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule) {document.styleSheets[0].addRule('*', 'behavior: url(css/resources/iepngfix.htc)'); document.styleSheets[0].addRule('img', 'behavior: url(css/resources/iepngfix.htc)'); document.styleSheets[0].addRule('div', 'behavior: url(css/resources/iepngfix.htc)'); }	// when the DOM is ready...(function($){	/* hoverIntent by Brian Cherne */	$.fn.hoverIntent = function(f,g) {		// default configuration options		var cfg = {			sensitivity: 7,			interval: 100,			timeout: 0		};		// override configuration options with user supplied object		cfg = $.extend(cfg, g ? { over: f, out: g } : f );		// instantiate variables		// cX, cY = current X and Y position of mouse, updated by mousemove event		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval		var cX, cY, pX, pY;		// A private function for getting mouse position		var track = function(ev) {			cX = ev.pageX;			cY = ev.pageY;		};		// A private function for comparing current and previous mouse position		var compare = function(ev,ob) {			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);			// compare mouse positions to see if they've crossed the threshold			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {				$(ob).unbind("mousemove",track);				// set hoverIntent state to true (so mouseOut can be called)				ob.hoverIntent_s = 1;				return cfg.over.apply(ob,[ev]);			} else {				// set previous coordinates for next time				pX = cX; pY = cY;				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );			}		};		// A private function for delaying the mouseOut function		var delay = function(ev,ob) {			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);			ob.hoverIntent_s = 0;			return cfg.out.apply(ob,[ev]);		};		// A private function for handling mouse 'hovering'		var handleHover = function(e) {			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }			if ( p == this ) { return false; }			// copy objects to be passed into t (required for event object to be passed in IE)			var ev = jQuery.extend({},e);			var ob = this;			// cancel hoverIntent timer if it exists			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }			// else e.type == "onmouseover"			if (e.type == "mouseover") {				// set "previous" X and Y position based on initial entry point				pX = ev.pageX; pY = ev.pageY;				// update "current" X and Y position based on mousemove				$(ob).bind("mousemove",track);				// start polling interval (self-calling timeout) to compare mouse coordinates over time				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}			// else e.type == "onmouseout"			} else {				// unbind expensive mousemove event				$(ob).unbind("mousemove",track);				// if hoverIntent state is true, then call the mouseOut function after the specified delay				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}			}		};		// bind the function to the two event listeners		return this.mouseover(handleHover).mouseout(handleHover);	};	})(jQuery);			// initialise plugin JSlider	$(document).ready(function () {var $panels = $('#slider .scrollContainer > div');var $container = $('#slider .scrollContainer');// if false, we'll float all the panels left and fix the width // of the containervar horizontal = true;// float the panels left if we're going horizontalif (horizontal) {  $panels.css({    'float' : 'left',    'position' : 'relative' // IE fix to ensure overflow is hidden  });    // calculate a new width for the container (so it holds all panels)  $container.css('width', $panels[0].offsetWidth * $panels.length);}// collect the scroll object, at the same time apply the hidden overflow// to remove the default scrollbars that will appearvar $scroll = $('#slider .scroll').css('overflow', 'hidden');// apply our left + right buttons// handle nav selectionfunction selectNav() {  $(this)    .parents('ul:first')      .find('a')        .removeClass('selected')      .end()    .end()    .addClass('selected');}$('#slider .navigation').find('a').click(selectNav);// go find the navigation link that has this target and select the navfunction trigger(data) {		$('a.selected').removeClass('selected');	$(".navigation").find('a').each(function(){		var tempHref = $(this).attr('href');		var tempId = ('#' + data.id);		if(tempHref == tempId)		{			$(this).addClass('selected');		}	});  var el = $('#slider .navigation').find('a[href$="' + data.id + '"]').get(0);  selectNav.call(el);}if (window.location.hash) {  trigger({ id : window.location.hash.substr(1) });} else {  $('ul.navigation a:first').click();}// offset is used to move to *exactly* the right place, since I'm using// padding on my example, I need to subtract the amount of padding to// the offset.  Try removing this to get a good idea of the effectvar offset = parseInt((horizontal ?   $container.css('paddingTop') :   $container.css('paddingLeft'))   || 0) * -1;var scrollOptions = {  target: $scroll, // the element that has the overflow    // can be a selector which will be relative to the target  items: $panels,    navigation: '.navigation a',    // selectors are NOT relative to document, i.e. make sure they're unique  prev: 'img.left',   next: 'img.right',    // allow the scroll effect to run both directions  axis: 'xy',    onAfter: trigger, // our final callback    offset: offset,    // duration of the sliding effect  duration: 400,  interval: 6000,  force: true,  // easing - can be used with the easing plugin:   // http://gsgd.co.uk/sandbox/jquery/easing/  easing: 'swing'};// apply serialScroll to the slider - we chose this plugin because it // supports// the indexed next and previous scroll along with hooking // in to our navigation.$('#slider').serialScroll(scrollOptions);// now apply localScroll to hook any other arbitrary links to trigger // the effect/*$.localScroll(scrollOptions);*/// finally, if the URL has a hash, move the slider in to position, // setting the duration to 1 because I don't want it to scroll in the// very first page load.  We don't always need this, but it ensures// the positioning is absolutely spot on when the pages loads./*scrollOptions.duration = 1;$.localScroll.hash(scrollOptions);*/});