$(document).ready(function(){
  
  $('.menu li').hover(function(){
 	 	$(this).addClass('hover');
 	}, function(){
 		$(this).removeClass('hover');
 	});
 	
 	$('.cycle').cycle({
  		fx: 'fade'
  	});
 	$("a[rel=fb]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	// Open External Links in New Window
  $('a[rel*=external]').live('click', function(){
     window.open(this.href);
     return false;
  }); 
  
  $w = $('.pages ul').width();
  $('.pages').css('width',$w);
  
});
