<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(document).ready(function()
{
	//slides the element with class "articlebody" when paragraph with class "menu_head" is clicked 
	$("#newsaccordion2 div.articlehead").click(function()
    {
		$(this).css({backgroundImage:"url(down.png)"}).next("div.articlebody").slideToggle(300).siblings("div.articlebody").slideUp("slow");
       	$(this).siblings().css({backgroundImage:"url(left.png)"});
	});
	//slides the element with class "articlebody" when mouse is over the paragraph
	$("#newsaccordion div.articlehead").mouseover(function()
    {
	     $(this).css({backgroundImage:"url(down.png)"}).next("div.articlebody").slideDown(500).siblings("div.articlebody").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url(left.png)"});
	});
});