$(document).ready(function() {
	//cufon
    Cufon.replace('h1, ul#nav', {hover: true});
	
	$('.expander').hide();
	
	// $('.clicker').click(function() {
        // $('.expander').animate({height: 'toggle'}, 1000);
    // });
	
	if ($('.clicker').length){
		$("a.clicker").toggle(
				function () {
					$(this).html('Click for less details &lt;');
					$(this).parent().prev('div').animate({'height':'toggle'});
				},
				function () {
					$(this).html("Click for more details &gt;");
					$(this).parent().prev('div').animate({'height':'toggle'});
				}
			);
	}
	
});
