jQuery(document).ready(function() {

	jQuery('ul.sf-menu').superfish();

	jQuery('#rotator').cycle({ 
	    fx: 'fade',
	    timeout: 3000,
	    speed: 1000,
	    pause: 1
	});
	
	jQuery(".recentphotos div").mouseover(function(){
			jQuery(this).addClass("over");
		}).mouseout(function(){
			jQuery(this).removeClass("over");
		});

	jQuery(".gallerywrap").mouseover(function(){
			jQuery(this).addClass("over");
		}).mouseout(function(){
			jQuery(this).removeClass("over");
		});
	
	var opts = {
		imageLoading:	'/ct/wp-content/themes/carnegies/images/lightbox-ico-loading.gif',		
		imageBtnPrev:	'/ct/wp-content/themes/carnegies/images/lightbox-btn-prev.gif',			
		imageBtnNext:	'/ct/wp-content/themes/carnegies/images/lightbox-btn-next.gif',	
		imageBtnClose:	'/ct/wp-content/themes/carnegies/images/lightbox-btn-close.gif',
		imageBlank:		'/ct/wp-content/themes/carnegies/images/lightbox-blank.gif',
	};

	jQuery('a.lightbox').lightBox(opts);
	jQuery('[href$=".jpg"],[href$=".jpeg"]').lightBox(opts);
	
	jQuery('div.hentry:last-child').css('border','0');

}); 
