$( function () {

    $('#content #center table').each(function(){
    
    
	$('tr:first td',this).css({
		color:"#fff",
		background:"#CF7C00",
		verticalAlign:"middle"
	});
	
      
	if (this.clientHeight > 1000  && $('#content #center table').length == 1)
	{
	    $("#content,#center").css({width:"625px",overflow:"hidden"});
	    $('#special').css({display:"none"});
            $(this).css('width','100%');
	}
     });
});



