jQuery(function($) {
	h = ($(window).height()-160)+"px"
$('#mainframe').css('height', h); 
	$('#head-toggler').live('click', function() {
		if ($('#hidder').is(':visible')) {
			$(this).addClass('max');
			$(this).find('span').html('Maximize');
			Cufon.replace('#nav li a span');
 
		} else {
			$(this).removeClass('max');
			$(this).find('span').html('Minimize');			
			Cufon.replace('#nav li a span');
           
		};
		$("#download-now").slideToggle();
		
		$('#expand2').slideToggle("normal");
	    $(".small").toggle(1);
		return false;
	});
	$('#head-closer').live('click', function() {
		$('#header').remove();
		$("#tb").attr({height : "0"});
		return false;
	});

});