//Cufon.replace('h1, h2, h4, .navigation ul li, .font-replace', {
//	hover: true
//});

jQuery(document).ready(function(){
   
	jQuery("div.slide").hide();
	jQuery("a.more-info").show();
	
	jQuery("a.more-info").click(function () {
	    
	    if (jQuery(this).hasClass("open")){ //if text already visible
		    //close
		    jQuery(this).removeClass("open");//show text
		    jQuery(this).parent().parent().next().next().slideUp().removeClass("open"); //close all 
		    }
	    else
	        { //if opening hidden text
	        jQuery(this).addClass("open");//show text
	        jQuery(this).parent().parent().next().next().slideDown().addClass("open");//show text
	        }
	    return false;
	});

	// Equal heights for news panels
	jQuery(".news-item").equalHeights();
	
 
 });
