//  Developed by Roshan Bhattarai. Visit http://roshanbh.com.np for this script and more.	

$(document).ready(function() {	
	//open first item
	$("#accordion h4.first").css({background:"#017bc6 url(../../images/close.gif) top right no-repeat"}).next("div.accordion-content").slideToggle(300).siblings("div.accordion-content").slideUp("slow");
		
	//slides the element with class "menu_body" when class "menu_head" is clicked 
	$("#accordion h4.accordion-head").click(function() {
		$(this).css({background:"#017bc6 url(../../images/close.gif) top right no-repeat"}).next("div.accordion-content").slideToggle(300).siblings("div.accordion-content").slideUp("slow");				
		$(this).siblings().css({background:"#017bc6 url(../../images/open.gif) top right no-repeat"});				
		$(".accordion-content").css({background:"#f5f5f5"});
	});	
});		
