
	Cufon.replace('h1, #content article h2, #bke_searchbox_wrapper h2, h3', {
			fontFamily: 'Swis721 LtCn BT'
		});
		Cufon.replace('nav > ul > li > a', {
			fontFamily: 'Swis721 Cn BT',
			textShadow: '1px 1px rgba(0,0,0,0.4)'
		});
		Cufon.replace('#slogan', {
			fontFamily: 'Trajan Pro',
			textShadow: '1px 1px rgba(0,0,0,0.4)'
		});
		Cufon.replace('#specials h1', {
			fontFamily: 'Trajan Pro'
		});
		
		$(document).ready(function() {
		$('#slider').nivoSlider({
			effect:'fade',
			animSpeed:1500,
			pauseTime:4500,
			directionNav:false,
			directionNavHide:true,
			controlNav:false,
			captionOpacity:0
		});
		// Cycle All Start
		$('#specials ul').cycle({
			fx:     'scrollLeft', 
			speed:    600, 
			timeout:  6000 ,
			random:  1,  // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			slideExpr: 'li'
			});
		// Cycle All End
		// Carousel Start
		$(".carousel").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev",
			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:'-74px'}, 200);
			});
		// Carousel End

// FLOATING BANNER START
	$.get('/floating-banner.htm', function(data) {
		$('#f_banner_wrapper').html($(data).filter('#fl_banner'));

			jQuery("#fl_banner").animate({
			top: jQuery(window).height()/2 - jQuery("#fl_banner").height()/2,
			left: jQuery(window).width()/2 - jQuery("#fl_banner").width()/2
		  }, 2500 );
		jQuery("#fl_banner").bind("mouseenter",function(){
			jQuery(".closer", this).fadeIn("fast");
		}).bind("mouseleave",function(){
			jQuery(".closer", this).fadeOut("fast");
		});
		jQuery("#fl_banner").click(function () {
		  jQuery(this).fadeOut("slow");
		});
	});
// FLOATING BANNER END


	});
