$(document).ready( function(){ // Initializations $('ul#degrees').fadeTo(500,0.15); $('div.ec_content').hide(); // Show Welcome //$('div.ec_content:first').show(); $('div#foot-nav').toggle( function() { $('div#super-footer').css({"height": "5px"}); }, function() { $('div#super-footer').css({"height": "275px"}); } ); // Hidden Inactive Side Degree Menu $('ul#degrees').hover( function() { $(this).fadeTo(0,1.0); }, function() { $(this).fadeTo(100,0.15); } ); // Dropdown $('div.ec_header').click( function() { $(this).siblings('div.ec_content').slideToggle(400); //$(this).children('.secretcontrol').toggleClass('hidden'); var control = $(this).children('.secretcontrol'); if(control.text() == 'close') { control.text('read more'); } else { control.text('close'); } } ); } );