Cufon.replace('.helvCond', { fontFamily: "Arial Black" });
Cufon.replace('#mainmenu a', { fontFamily: "helvneuelight", hover: true });

$(document).ready(function() {
	$('A[rel="lightbox"]').lightBox({
		overlayBgColor: "#000",
		overlayOpacity: 0.6,
		imageLoading: "/public/images/lightbox/loading.gif",
		imageBtnClose: "/public/images/lightbox/close.gif",
		imageBtnPrev: "/public/images/lightbox/prev.gif",
		imageBtnNext: "/public/images/lightbox/next.gif",
		imageBlank: "/public/images/lightbox/blank.gif", 
		containerResizeSpeed: 350,
		txtImage: "",
		txtOf: "of"
	});
	
	$('#headerImg').hover(function(){
		$('#header1').fadeOut('1000');
	}, function(){
		$('#header1').fadeIn('200');
	});
	
	$('.footerBtn1').bind("mouseover", function(){
		$('.footerLabel1 a').css('color', '#ce2329');
	}).bind("mouseout", function(){
		$('.footerLabel1 a').css('color', '#ffffff');
	});
	
	$('.footerBtn2').bind("mouseover", function(){
		$('.footerLabel2 a').css('color', '#ce2329');
	}).bind("mouseout", function(){
		$('.footerLabel2 a').css('color', '#ffffff');
	});
	
	$('.footerBtn3').bind("mouseover", function(){
		$('.footerLabel3 a').css('color', '#ce2329');
	}).bind("mouseout", function(){
		$('.footerLabel3 a').css('color', '#ffffff');
	});
	
	$('.footerBtn4').bind("mouseover", function(){
		$('.footerLabel4 a').css('color', '#ce2329');
	}).bind("mouseout", function(){
		$('.footerLabel4 a').css('color', '#ffffff');
	});
	
	$('.footerBtn5').bind("mouseover", function(){
		$('.footerLabel5 a').css('color', '#ce2329');
	}).bind("mouseout", function(){
		$('.footerLabel5 a').css('color', '#ffffff');
	});
	
	$('.footerBtn6').bind("mouseover", function(){
		$('.footerLabel6 a').css('color', '#ce2329');
	}).bind("mouseout", function(){
		$('.footerLabel6 a').css('color', '#ffffff');
	});
	
	$("area[rel], a[rel]").overlay({
		top: "35%"
	});
	
	$("#team_button").cycle();
	
});