Cufon ( '.menu a', { fontFamily: 'Helvetica Neue', fontWeight: '700', hover: true })
	  ( '.about_column h1',  { fontFamily: 'Helvetica Neue', fontWeight: '400' } )
	  ( '#facts h1',  { fontFamily: 'Helvetica Neue', fontWeight: '400' } )
	  ( 'li.fact',  { fontFamily: 'Helvetica Neue', fontWeight: '400' } )
	  ( '.category-locations h3',  { fontFamily: 'Helvetica Neue', fontWeight: '400' } )
	  ( '#location-switch ul a',  { fontFamily: 'Helvetica Neue', fontWeight: '400', hover: true } )
	  ( '.product h2',  { fontFamily: 'Helvetica Neue', fontWeight: '700' } )
	  ( 'body.page .entry-title', { fontFamily: 'Helvetica Neue', fontWeight: '100' })
	  ( '.entry-title a', { fontFamily: 'Helvetica Neue', fontWeight: '100', hover: true })
	  ( '.category-locations .entry-title', { fontFamily: 'Helvetica Neue', fontWeight: '100' })
	  ( '#siteinfo', { fontFamily: 'Kristen Normal ITC Std', hover: true })
      ( '.home h2', { fontFamily: 'Kristen Normal ITC Std' })
      ( 'label', { fontFamily: 'Helvetica Neue' })

			function slideSwitch() {
			    var $active = $('#slideshow-home div.active');

			    if ( $active.length == 0 ) $active = $('#slideshow-home div:last');

			    var $next =  $active.next().length ? $active.next()
			        : $('#slideshow-home div:first');

			    $active.addClass('last-active');

			    $next.css({opacity: 0.0})
			        .addClass('active')
			        .animate({opacity: 1.0}, 1000, function() {
			            $active.removeClass('active last-active');
			        });
			}

			$(function() {
			    setInterval( "slideSwitch()", 3000 );
			});

$(document).ready(function() {
	$('#location-switch').tabs();
});

