$(document).ready(function() {
	$("#hidePanel").click(function(){
		if ($('#colleft').css('width') == '0px') {
			$("#colright").css({width:(parseInt($('#colright').css('width')) - $('#news').css('width'))+ "px"});
			$('#colleft').css({width:'250px'});
			$('#colleft').css({display:"block"});
			$('#hidePanel').html('<a href="#">&laquo; Hide Panel</a>');
			fixColumnHeight();
		} else {
			$("#panel").animate({marginLeft:"-250"}, 500 );
			//$("#colleft").animate({width:"0px", opacity:0}, 400 );
			$('#colleft').css({width:"0px"});
			$('#colleft').css({display:"none"});
			//$("#colright").animate({marginLeft:"0px"}, 500, "linear", fixColumnHeight);
			//$('#hidePanel').animate({opacity:0});
			$('#hidePanel').html('<a href="#">Show Panel &raquo;</a>');
			fixColumnHeight();
		}
	});
});

