Cufon.replace('.nav a, .searchbox  h3', {
fontFamily:'Arial',
hover: true
});

Cufon.replace('.featured h2, .featured h3', {
fontFamily:'Lane - Narrow',
hover: true
});

	   $(document).ready(
				function(){
					
					$('.banner ul.fade').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '550px'
					});			
				
			//$('.content').hide();

$('#trigger').addClass("nonSelected");

  $('#trigger').click(function() {

  if($(this).hasClass('nonSelected')){
    $('.panel').animate({top: '-=100'}, 500);
		Cufon.refresh();
		//$('.featureoffer').fadeOut();
	$('#trigger').removeClass("nonSelected");
  }
  else {
		$('.panel').animate({top: '-163px'}, 500);
	$('#trigger').addClass("nonSelected");
  }

    return false;
  });
  

	$(".carousel").jCarouselLite({
		auto: 5000,
		speed: 600,
		visible: 4
	});
	
	$(".carousel ul li").bind("mouseenter",function() {
		$('.desc', this).animate({bottom:'0px'}, 200);
		}).bind("mouseleave",function(){
		$('.desc', this).animate({bottom:'-84px'}, 200);
	});
  

  // HOME PAGE FLOATING PROMOTION ROTATOR
  var promotions_qty = $('.featured ul li').size();
  var next_promotion = 0;

  var rotate_promotions = function() {
    if (next_promotion == promotions_qty) {
      next_promotion = 0
    }

    $('.featured ul li').hide();
    $('.featured ul li').eq(next_promotion).fadeIn(500);

    next_promotion++;
  };

  rotate_promotions();

  setInterval(rotate_promotions, 8000);

  // HOME PAGE FLOATING PROMOTION ROTATOR END
  
  $('.scroll').jScrollPane({showArrows:true});


			});
