function initMenu(){$('.accordion .jquery-content').hide();$('.accordion .jquery').click(function(){var checkElement=$(this).next();if((checkElement.is('.accordion .jquery-content'))&&(checkElement.is(':visible'))){$('.accordion .jquery-content:visible').slideUp('normal').siblings('p').animate({width:"241px"},1500).children().children().fadeOut("slow");return false}if((checkElement.is('.accordion .jquery-content'))&&(!checkElement.is(':visible'))){$('.accordion .jquery-content:visible').slideUp(200).siblings('p').animate({width:"241px"},1500).children().children().fadeOut("slow");checkElement.slideDown('normal').siblings('p').animate({width:"500px"},1500).children().children().fadeIn("slow").css({display:"inline"});return false}})}function closeit(){}$(document).ready(function(){initMenu()});