$(document).ready(function(){ $('a.email').each(function(){ $(this).attr('rel', $(this).siblings('.e-mail-hidden').text()); $(this).nospam(); if($(this).attr('href') != null) $(this).attr('title', $(this).attr('href').slice(7)); $(this).append(' ' + $(this).attr('title') + ''); }); $('footer#footer, aside#side1, aside#side2').css('word-wrap', 'break-word'); $('nav#menuMain a, nav#menuAlt a, input:submit, input:button, button').button().fadeTo(0, '0.7').bind('mouseover focusin', function(){ $(this).stop().animate({'opacity': '1.0'}, 'slow'); }).bind('mouseout focusout', function(){ $(this).stop().animate({'opacity': '0.7'}, 'slow'); });; $('input:checkbox').focusin(function(){ $('label[for="' + $(this).attr('id') + '"]').addClass('checkboxFocus'); }).focusout(function(){ $('label[for="' + $(this).attr('id') + '"]').removeClass('checkboxFocus'); }); if(!$.browser.msie){ $('input:submit, input:button').addClass('ui-state-default').hover(function(){ $(this).toggleClass('ui-state-default'); $(this).toggleClass('ui-state-hover'); }).focusin(function(){ $(this).toggleClass('ui-state-default'); $(this).toggleClass('ui-state-focus'); }).focusout(function(){ $(this).toggleClass('ui-state-default'); $(this).toggleClass('ui-state-focus'); }); if($('body').attr('id')=='bodyLinks'){ $('section.sectionLink').corner(); } $('nav#menuAdmin').hide(); $('a#menuAdminToggler').bind('click', function(){ $('nav#menuAdmin').slideToggle(); return false; }).corner(); $('a#menuAdminToggler').toggle(function(){ $(this).text('Click to hide Administration menu').attr('title', 'Click here to hide the Administration menu').addClass('open'); }, function(){ $(this).text('Click to show Administration menu').attr('title', 'Click here to show the Administration menu').removeClass('open'); }); var options = {}; $('aside#pageSubSidebar').hide().corner('right'); $('a#pageSubSidebarToggler').bind('click', function(){ $('aside#pageSubSidebar').toggle('slide', options, 500); return false; }).corner('5px left'); $('a#pageSubSidebarToggler').toggle(function(){ $(this).attr('title', 'Click here to hide the Administration submenu').addClass('open'); }, function(){ $(this).attr('title', 'Click here to show the Administration submenu').removeClass('open'); }); }else{ $('input:submit').addClass('ui-state-default').hover(function(){ $(this).toggleClass('ui-state-default'); $(this).toggleClass('ui-state-hover'); }).focusin(function(){ $(this).toggleClass('ui-state-default'); $(this).toggleClass('ui-state-focus'); }).focusout(function(){ $(this).toggleClass('ui-state-default'); $(this).toggleClass('ui-state-focus'); }); $('nav#menuMain a').css('padding', '5px 8px 5px 5px').corner('7px'); $('nav#menuAlt a').css('padding', '5px 5px 5px 8px').corner('7px'); $('header#header, aside#side1').corner('7px top cc:#85815a'); $('header#header').corner('7px bottom cc:#646232'); $('footer#footer').corner('7px top cc:#2c231e'); $('footer#footer, div#footer-logo').corner('7px bottom cc:#2c231e'); DD_roundies.addRule('fieldset', '7px') DD_roundies.addRule('header#content-title', '7px 7px 0px 0px'); DD_roundies.addRule('div#content', '0px 0px 7px 7px'); $('legend').css('margin-top', '-15px').css('background', '#fff'); } });