
Cufon.replace('li.tab',{ fontFamily: 'humanst521', hover: true});
Cufon.replace('li.tab a',{ fontFamily: 'humanst521', hover: {color: '#FFF'}});
Cufon.replace('div#heading h2',{ fontFamily: 'humanst521'});
Cufon.replace('div.box h3',{ fontFamily: 'humanst521'});

function goToByScroll(id){
      $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}


// onload jquery stuff
$(function(){
  
  // preload images in css files
  $(['assets/images/nav-bg-over.jpg',
     'assets/images/apersad.png',
     'assets/images/hpersad.png',
     'assets/images/geoffrey.png',
     'assets/images/razeem.png',
     'assets/images/rbaddaloo.png',
     'assets/images/neena.png']).preload();

  $("div.leader:last").css({"border-bottom":"none"});
  
  // load colorbox
  $("a.movie").colorbox({iframe:true, innerWidth:480, innerHeight:270});
  
  // antispam email
  $('a.email').each(function(i) {
    var text = $(this).text();
    var address = text.replace(" /at/ ", "@");
    $(this).attr('href', 'mailto:' + address);
        $(this).text(address);
  });
  
  
  // scroll to anchors

	if (typeof anchor != "undefined") {
	 goToByScroll(anchor);  
	}
	
   
});

