Team:WITS-CSIR SA/common.js

From 2011.igem.org

Revision as of 12:11, 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'
 });

}

function RemoveTitle(){

 $('.firstHeading').eq(0).remove();

}

$(function() {

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

});