<!--//---------------------------------+
//  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 
	$("#firstpane div.cosmetic").click(function()
    {
		$(this).css({backgroundImage:"url(images/cosmetic-over.jpg)", height:"68px"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings("div.dental").css({backgroundImage:"url(images/dental.jpg)", height:"68px"});
       	$(this).siblings("div.dermatology").css({backgroundImage:"url(images/dermatology.jpg)", height:"68px"});
       	$(this).siblings("div.medspa").css({backgroundImage:"url(images/medspa.jpg)", height:"68px"});
	});
});


$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane div.dental").click(function()
    {
		$(this).css({backgroundImage:"url(images/dental-over.jpg)", height:"68px"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings("div.cosmetic").css({backgroundImage:"url(images/cosmetic.jpg)", height:"68px"});
       	$(this).siblings("div.dermatology").css({backgroundImage:"url(images/dermatology.jpg)", height:"68px"});
       	$(this).siblings("div.medspa").css({backgroundImage:"url(images/medspa.jpg)", height:"68px"});
	});
});


$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane div.dermatology").click(function()
    {
		$(this).css({backgroundImage:"url(images/dermatology-over.jpg)", height:"68px"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings("div.cosmetic").css({backgroundImage:"url(images/cosmetic.jpg)", height:"68px"});
       	$(this).siblings("div.dental").css({backgroundImage:"url(images/dental.jpg)", height:"68px"});
       	$(this).siblings("div.medspa").css({backgroundImage:"url(images/medspa.jpg)", height:"68px"});
	});
});


$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane div.medspa").click(function()
    {
		$(this).css({backgroundImage:"url(images/medspa-over.jpg)", height:"68px"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings("div.cosmetic").css({backgroundImage:"url(images/cosmetic.jpg)", height:"68px"});
       	$(this).siblings("div.dental").css({backgroundImage:"url(images/dental.jpg)", height:"68px"});
       	$(this).siblings("div.dermatology").css({backgroundImage:"url(images/dermatology.jpg)", height:"68px"});
	});
});

