Team:WITS-CSIR SA/common.js

From 2011.igem.org

Revision as of 11:24, 9 May 2011 by Nkruger (Talk | contribs)

function RebuildHeader() {

$('#p-logo').empty().append('

<a href="https://2011.igem.org/Team:WITS-CSIR_SA">CSIR Wits</a>

');
 $('#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 StyleBody(){

 $('body').addClass('ui-widget-content');
 $('#bodyContent, #content').css('background-color', '#666666');
 $('table').css('background-color', 'transparent');
 $('#catlinks').css({'background-color': 'transparent', border:'none'}).addClass('ui-widget-header ui-corner-all');
 var html = $('#footer-box').html();
 $('#footer-box').remove();
 $('#catlinks').html(html);
 $('body').css({ 'overflow-x': 'hidden', 'overflow-y': 'visible' });

}

$(function() {

 RebuildHeader();
 RemoveTitle();
 StyleBody();

});