//Cufon.replace('#header_menu ul li,.footer_menu ul li,.footer_facebook a,.footer_login p,#column ul li,#column ul li ul li,h1,#tag_cloud div span'); 

Cufon.replace('#header_menu ul li,.footer_menu ul li,.footer_facebook a,.footer_login p,#nav ul li,#nav ul li ul li,h1,#tag_cloud div span');

function equalHeight(group) { 
   tallest = 0;
   group.each(function() {
      thisHeight = $(this).height();
      if(thisHeight > tallest) {
         tallest = thisHeight+20;
      }
   });
   group.height(tallest);
}

$(document).ready(function() {
	
  
	equalHeight($(".column"));		
	
	$('.inputbox').example(function() {
		return $(this).attr('title');
	});
	
	var ori = $('#column').height();
	
	$(".accordion2 h3").click(function(){
		
		$(this).next("div").slideToggle("slow").siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");		
	
 		if($(this).hasClass('active')){
 			var news = 0;
			$(this).next("div").children().each(function(){
				news = news+$(this).height();
			});
			
			var total = ori+news+50;
			
			$('#column').height(total);
			
			equalHeight($(".column"));
 		}else{
 			$('.column').height(ori);
			
			equalHeight($(".column"));
 		}
		
		

		
		
 		return false;
	});
	
	
	
});





