<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
//
// The code below has been altered from the original.
// visit Rohan's website to see the original code.
// --------------------------------->

$(document).ready(function()
{
		var $tab=1;
		

	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#main div.menu_head").click(function()
  {
		$tab=$tab + 1; //when tab is click increase it's counter by 1
		$(this).css({backgroundImage:"url(http://www.liplasticsurgery.com/images/procedures2.jpg)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");

		if($tab==2){ //if the same tab is clicked twice - when the counter hits '2'
		$(this).css({backgroundImage:"url(http://www.liplasticsurgery.com/images/procedures.jpg)"}); //switch back to original image
		$tab=0; //reset counter for this tab
		}; //end if

	});

});


