 Cufon.replace('#nav a, ul.links a, div.rightcol a, #photogallery h3, li.feature h3, .hpanel a', {
		fontFamily:'Trajan Pro'
		});

Cufon.replace('h1', {
/*		color: '-linear-gradient(#5d5e5f, #4e4f4f)',*/
		fontFamily:'Edwardian Script ITC'
		});

Cufon.replace('#content h1', {
		color: '-linear-gradient(#5d5e5f, #4e4f4f)',
		fontFamily:'Trajan Pro'
		});

$(document).ready(function() {
  // Options for SuperBGImage
  $.fn.superbgimage.options = {
    id: 'superbgimage', // id for the containter
    //z_index: -1,
    transition : 1, // 0-none, 1-fade, 2-slide down, 3-slide left, 4-slide top, 5-slide right, 6-blind horizontal, 7-blind vertical, 90-slide right/left, 91-slide top/down
    //randomtransition: 1, // 0-none, 1-use random transition (0-7)
    slideshow : 1, // 0-none, 1-autostart slideshow
    slide_interval : 10000, // interval for the slideshow
    randomimage : 0, // 0-none, 1-random image
    speed : 'slow' // animation speed
  };

  // initialize SuperBGImage
  $('#superbgimage').superbgimage().hide();

  $('#superbgimage').height($('#background').height());
  
  if ($("a.lightbox").size() > 0) {
    $('a.lightbox').lightBox({
      fixedNavigation: false,
      imageLoading: '/static_files/images/lightbox-ico-loading.gif',
      imageBtnClose: '/static_files/images/lightbox-btn-close.gif',
      imageBtnPrev: '/static_files/images/lightbox-btn-prev.gif',
      imageBtnNext: '/static_files/images/lightbox-btn-next.gif',
      imageBlank: '/static_files/images/lightbox-blank.gif'
    });  
  }
  
  if ($("#mycarousel").size() > 0) {
  $('#mycarousel').jcarousel();
  }
  
  
  $('#welcome').click(function() {
	$(this).hide();
	$('#welcome-expand').delay(400).fadeIn(400);
  });
  
  $('a.close').click(function() {
	$(this).parent().fadeOut(400);
	//$(this).hide();
	$('#welcome').delay(400).fadeIn(400);
  });
  
  $('.welcometext').jScrollPane({showArrows: true});
  
  var promotions_qty = $('div.contain ul li').size();
var next_promotion = 0;
var rotate_promotions = function() {
if (next_promotion == promotions_qty) { next_promotion = 0 }
$('div.contain ul li').hide();
$('div.contain ul li').eq(next_promotion).fadeIn(500);
next_promotion++;
};
//rotate_promotions();
$('div.contain ul li').hide();
setTimeout(rotate_promotions, 2000); 
setInterval(rotate_promotions, 6000); 
  
  $('#news .news-items ul').cycle({ 
    fx:     'scrollUp', 
    speed:  'slow', 
    timeout: 5000,
    slideExpr: 'li'
  });
  
});

$(window).resize(function() {
  $('#superbgimage').height($('#background').height());
});

