	 
	//Cufon.replace('h2, h4', { fontFamily: 'edoszp', fontWeight: 400 } );
	//Cufon.replace('.food-menu h3, .alt-food-menu h3, .photo-albums h3, .photo-gallery h3, .gig-listings h3, #main-content h3',
	//	{ fontFamily: 'edoszp', fontWeight: 400, textShadow: '2px 3px #b0002d' } );
	
	jQuery(document).ready(function($)
	{

		$('#slideshow-container').cycle(
		{ 
			fx:     'scrollLeft', 
			speed:   750, 
			timeout: 10000, 
			easing: 'easeInOutExpo',
			next:   '#slideshow'
		});
		
		$("#nav-contact a").click( function()
		{
			$("body").scrollTo( $("#contact"), 1250 );	
			return false;
		});
		
		$('a[rel*="external"]').click( function()
		{
			window.open(this.href);
			return false;
		});

		
		
		/* $("#contact-us a").bind('click', function()
		{
			if (pageTracker)
			{
				pageTracker._trackEvent('Jump', 'Contact Arrow', '');
			}
		});
		 */
		 
		 
		 
		/* FancyBox --------------------------------- */
		jQuery(function()
		{

			jQuery.fn.getTitle = function()
			{
				var arr = jQuery("a.fancybox");
				jQuery.each(arr, function()
				{
					var title = jQuery(this).children("img").attr("title");
				jQuery(this).attr('title',title);
				});
			}

			// Supported file extensions
			var thumbnails = 'a:has(img)[href$=".jpg"], a:has(img)[href$=".png"], a:has(img)[href$=".gif"]';
		
			jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();

				jQuery("a.fancybox").fancybox(
				{
					'transitionIn'	: 'elastic',
					'transitionOut'	: 'elastic',
					'easingIn' : 'easeInOutExpo', 
					'easingOut' : 'easeInOutExpo',
					'changeFade' : 0
			});
		});
	
	
		
	});

