
$(document).ready(function(){
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#leftpane p.menu_head").click(function()
    {
		$(this).css({backgroundImage:"url(/images/down.png)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings().css({backgroundImage:"url(/images/left.png)"});
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane p.menu_head").mouseover(function()
    {
	     $(this).css({backgroundImage:"url(/images/down.png)"}).next("div.menu_body").slideDown(500).siblings("div.menu_body").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url(/images/left.png)"});
	});
	$("#topmenu").css({backgroundImage:"url(/images/down.png)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
	$("#topmenu").siblings().css({backgroundImage:"url(/images/left.png)"});

});

	$(function() {
		$(".maglink").bind("mouseover",function() {
			$(this).addClass('hoverclass');
			$(this).find('a').css('color','#FFFFFF');
			});
		$(".maglink").bind("mouseout",function() {
			$(this).removeClass('hoverclass');
			$(this).find('a').css('color','#0000FF');
			});
		$('.maglink').click(function() {
			var h=$(this).find('a').attr('href');
			location.href=h;
			});
		});

