$(document).ready(function() {

	$('#main-slideshow').cycle({ 
		fx:     'fade', 
		speed:  'normal', 
		timeout: 0, 
		pager:  '#image-nav', 
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#image-nav li:eq(' + idx + ') a'; 
		} 
	});
	
	//PNG FIX
	//DD_belatedPNG.fix('a, h1, #find-location, #frequent-framers, #frequent-bottom, input, img, .jcarousel-container');
	
	//IE6 LI DROPDOWN FIX
	$('#navigation > ul > li').hover(function(){
	
		$(this).children('ul').css({left:'auto'});
		
	},function(){
			
			$(this).children('ul').css({left:'-999em'});
												  
	});
						   
});

