$().ready(function(){
				   
	// FIRST/LAST CLASSES FOR IE
	
	$('ul#navigation li:last-child, ul#utility-nav li:last-child, #footer ul li:last-child').addClass('last');
	$('#footer div.left ul li:first-child').addClass('first');
		   
	 // CUFON
	Cufon.replace('h1');
	 
	 
	 // SLIDER
	 $('#photos').cycle({ 
	 	speedIn:  750, 
    	speedOut: 750, 
		fx:     'scrollHorz', 
		timeout: 6000,
		pager:  '#promo-nav', 
		pagerAnchorBuilder: function(idx, slide) { 
		return '#promo-nav li:eq(' + idx + ') a'; 
		
		} 
    
	});
	 
	 // NAV ON TOGGLE AND SLIDER PAUSE
	  $('#promo-nav a').click(function(){
		 $('#promo-nav a').removeClass('selected');
	     $(this).addClass('selected');
		 $('#photos').cycle('pause'); 	
		 
	  });

});

// SET YEAR FOR COPYRIGHT
function setDate(){new Date();var d = new Date();document.write(d.getFullYear());}

