//---------------------------------+
//  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 "menu_body" when paragraph with class "menu_head" is clicked 
	$("li.menu_head").click(function()
    {
      $("span","li.menu_head").css({backgroundImage:"url(./images/icon-plus.gif)"});
      $(this).css({/*backgroundImage:"url()"*/}).next("li.submenu").slideToggle(300).siblings("li.submenu").slideUp("slow");
      
      
      
      
      $("span",this).css('backgroundImage', 'url(./images/icon-plus.gif)' ? 'url(./images/topbasket-separator.gif)':'url(./images/icon-plus.gif)');
      
      
      
      /*
      if ( $("span",this)=="url(./images/icon-plus.gif)" ) {
        $("span",this).css({backgroundImage:"url(./images/topbasket-separator.gif)"});
      }
      else {
        $("span",this).css({backgroundImage:"url(./images/icon-plus.gif)"});
      }
      */
      
    });
	
	
	//background:transparent url(../images/topbasket-separator.gif) no-repeat 
  //background:transparent url(../images/icon-plus.gif) no-repeat scroll left
	
	/*
	$("li.menu_head").click(function()
    {
		$(this).css({backgroundImage:"url(../images/topbasket-separator.gif) no-repeat"}).next("li.submenu").slideToggle(300).siblings("li.submenu").slideUp("slow");
        $(this).siblings().css({backgroundImage:"url(../images/icon-plus.gif) no-repeat scroll left"});
        
	});*/
	
	
	
	
	
	
	//slides the element with class "menu_body" when mouse is over the paragraph
	/*$("p.menu_head").mouseover(function()
    {
	     $(this).css({backgroundImage:"url(./images/plus.jpg)"}).next("div.menu_body").slideDown(500).siblings("div.menu_body").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url(./images/plus.jpg)"});
	});*/
});
