Team:WITS-CSIR SA/common.js

From 2011.igem.org

Revision as of 12:10, 8 May 2011 by Nkruger (Talk | contribs)

function ResizeLayout() {

 $('#top-section, #content').css({
   width: '100%'
 });

}

function RebuildHeader() {

 $('#p-logo').empty();
 $('#top-section').css({
   backgroundImage: 'url(https://static.igem.org/mediawiki/2011/5/53/Body_bg.gif)',
   backgroundColor: '#666666',
   backgroundRepeat: 'repeat-x',
   height: '155px'
 });
 var arr = $.grep($('#menubar li'), function(e,i){
   return $(e).text() == 'teams'
 });
 arr.each(function(){
   $(this).remove();
 });

}

function RemoveTitle(){

 $('.firstHeading:first').remove();

}

$(function() {

 ResizeLayout();
 RebuildHeader();
 RemoveTitle();

});