function initCufon(){

    
    Cufon.replace('#slider-holder #slider .slide .info-slide #bubble2 h4, #slider-holder #slider .slide .info-slide h2, #slider-holder #slider .slide #bubble .signature p, #slider-holder #slider .slide .info-slide h3, #content .column-info h2, .contact-info h2, #second-header h3 span, #content #team ul li .show-team2 span, #content #team ul li .show-team span, .header-bubble h2, .header-bubble #bubble .signature p, #sidebar h3, #left-content .title-center h3, #left-content #boxes .box h3, #contact-representatives h2, #footer #footer-in #footer-level1 .title-footer h4, #footer #footer-in #footer-level1 .column h3, #second-header h2,#left-content .articles h2, #footer #footer-in #footer-level2 .column-last h4', {hover: true, fontFamily: 'Melbourne'});	
	
	//Cufon.replace('#nav-main ul li a strong', {hover: true, fontFamily: 'Melbourne'  });
}



	

	//$('#nav-main ul li:hover').css('color','#46B719');



$(document).ready(function(){
	
//#################################################################
	
	initCufon();
			
//#################################################################	
	
	//FOR THE ACCORDION	
	$('#content #team ul.accordion > li > a').click(function(){
				
		var className = $(this).parent().attr('class');
		
		if(className == 'show'){
			$(this).next().hide('slow');
			$(this).parent().removeClass('show').addClass('hide');
			$(this).removeClass('close').addClass('open');
			$(this).children('em').text('Click to view');			
		} else {
			$(this).next().show('slow');
			$(this).parent().removeClass('hide').addClass('show');
			$(this).removeClass('open').addClass('close');
			$(this).children('em').text('Click to close');
		}		

	});
	
//#################################################################		
	
	$("#nav-main ul li").hover(
	  function () {
	   $(this).find('strong').css('color','#46B719');
	  }, 
	  function () {
	  	$(this).find('strong').css('color','#000000');	   
	  }
	);
	
//################################################################# 

	$('#nav-main ul li a').click(function(){	
		location.href = $(this).attr('href');	
	});
	
//#################################################################

	$('form :input[type=text]').focus(function(){						
		this.valuedefault = this.valuedefault || this.value;
		if (this.value == this.valuedefault) {			
			this.value = '';
		}
	});
	
//#################################################################
	
	$('form :input[type=text]').blur(function(){						
		this.valuedefault = this.valuedefault || this.value;
		if (this.value == '') {			
			this.value = this.valuedefault;
		}
	});
			
//#################################################################
});
