jQuery(function(){
	checkSize();
	
	jQuery('#menu li:eq(1)').css('border-left','0px');
	jQuery('#menu li:last').prev('li').css('border-right','0px');
	
	jQuery('.sites li').hover(
		function(){jQuery(this).css('background', '#eee')},
		function(){jQuery(this).css('background', '#fff')}
	);
	jQuery('.sites a, .imageLink').lightBox({fixedNavigation:true});
});

jQuery(window).bind('resize',checkSize);

function checkSize(){
	jQuery('.scroller')
	.autoScroll({
		width: true,
		fromEdge : 150
	});
}

function doNav(theUrl){
	document.location.href = theUrl;
}

String.prototype.UCFirst = function() {
   return this.substring(0,1).toUpperCase() + this.substring(1).toLowerCase();
}