Cufon.replace('.nav a, .featured h2', {
fontFamily:'BellGothic BT',
textShadow: '1px 1px rgba(0, 0, 0, 1)',
hover: true
});

Cufon.replace('.featured h3, .banner span#tagline', {
fontFamily:'BellGothic Blk BT',
textShadow: '1px 1px rgba(0, 0, 0, 1)',
color: '-linear-gradient(#e0d3ab, #a1946c)',
hover: true
});

Cufon.replace('.rightcol h1, .welcome h1', {
fontFamily:'BellGothic BT',
hover: true
});

Cufon.replace('.zoom-gallery-info-text span, #zoom-gallery div.title', {
fontFamily:'BellGothic Blk BT',
textShadow: '1px 1px rgba(0, 0, 0, 1)',
hover: true
});

Cufon.replace('.searchbox  h3, .reviews h4', {
fontFamily:'Trajan Pro',
hover: true
});

	   $(document).ready(
				function(){

					$('ul#ban').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '600px'
					});
					
	/*				$(".zoom").jCarouselLite({
    btnNext: "img.next",
    btnPrev: "img.prev",
	visible:5,
	auto: 1500,
    speed: 2500
});*/


$("#zoom-gallery").jCarouselLite({
    auto: 2200,
    speed: 2000
});

					
					

var promotions_qty = $('#feat ul li').size();
var next_promotion = 0;
var rotate_promotions = function() {
if (next_promotion == promotions_qty) { next_promotion = 0 }
$('#feat ul li').hide();
$('#feat ul li').eq(next_promotion).fadeIn(500);
next_promotion++;
};
//rotate_promotions();
$('#feat ul li').hide();
setTimeout(rotate_promotions, 2000); 
setInterval(rotate_promotions, 6000); 




var div = $('#welsurrond');			
var welcome = function() {		
$({ z: ~~div.css('zIndex')
    // ~~ to get an integer, even from non-numerical values like "auto"
}).animate({
    z: 10
}, {
    step: function() {
        div.css('zIndex', ~~this.z);
    },
    duration: 3000
});		

};


//$('#welsurrond').hide();
//welcome(); //.delay(10000);
setTimeout(welcome, 1000); 


$('.welcome').jScrollPane({showArrows: true});

			});
	
