$(document).ready(function(){
	
	/* Feature Image Cycle */
	$('#rotator').cycle({ 
		fx:     'fade', 
		next:   '#nextHighlight', 
		prev:   '#prevHighlight',
		timeout: 7000
	});
	
	var version = jQuery.browser.version;
	
	if (version instanceof Object){
	    version=version.number();
	}
		
	if (jQuery.browser.msie && version < 7){
		$('#pager').css('opacity',0.5);
	}

});