//<tr class="row1 growingRow"><td colspan="5"><div class="holder">Content in Here</div></td></tr>


jQuery(document).ready(function(){
    jQuery("#pageHeaderWrapper").prepend("<a href='/' id='headerlink' title='Home'></a>");
    
});

function grow(what){
    jQuery(".growingRow .holder").animate({"height":0});
	if (jQuery(".row"+what+" .holder").height()==0){
    	jQuery(".row"+what+" .holder").animate({"height":jQuery(".row"+what+" .holder div").height()});
	}
}
