<!--//---------------------------------+
//  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()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane div.menu_head").click(function()
    {
		$(this).css({backgroundImage:"url(images/sidebar-open.jpg)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings("div.menu_head").css({backgroundImage:"url(images/sidebar-closed.jpg)"});
	});

});

$(document).ready(function()
{
	/*
	THE FOLLOWING CODE IS USED TO CONTROL THE MOTION AND CSS OF THE TAB SECTIONS
	*/
	
//CLICK TABHEAD1
$('.tab_head1').click(function () {
								
//use css to control the background images of all the tabs
//tab1
$('.tab_head1').css({backgroundImage:"url(images/tab-open-line.jpg)"});

//tab2 when tab1 is clicked
$('.tab_head2').css({backgroundImage:"url(images/tab-closed-line.jpg)"});

//tab3 when tab1 is clicked
$('.tab_head3').css({backgroundImage:"url(images/tab-closed.jpg)"});

//hide the other tabs
$(".tab_body2").slideUp("slow");
$(".tab_body3").slideUp("slow");

//if tab is hidden, slide it down
if ($(".tab_body1").is(":hidden")) {
$(".tab_body1").slideDown("slow");
}else{
$(".tab_body1").slideUp("slow");
$('.tab_head1').css({backgroundImage:"url(images/tab-closed-line.jpg)"});
}
});// END CLICK TABHEAD2
	

//CLICK TABHEAD2
$('.tab_head2').click(function () {

//use css to control the background images of all the tabs
//tab2
$('.tab_head2').css({backgroundImage:"url(images/tab-open-line.jpg)"});

//tab1
$('.tab_head1').css({backgroundImage:"url(images/tab-closed-line.jpg)"});

//tab3
$('.tab_head3').css({backgroundImage:"url(images/tab-closed.jpg)"});

//hide the other tabs
$(".tab_body1").slideUp("slow");
$(".tab_body3").slideUp("slow");

//if tab is hidden, slide it down
if ($(".tab_body2").is(":hidden")) {
$(".tab_body2").slideDown("slow");
}else{
$(".tab_body2").slideUp("slow");
$('.tab_head2').css({backgroundImage:"url(images/tab-closed-line.jpg)"});
}

});// END CLICK TABHEAD3

//CLICK TABHEAD3
$('.tab_head3').click(function () {

//use css to control the background images of all the tabs
//tab3
$('.tab_head3').css({backgroundImage:"url(images/tab-open.jpg)"});

//tab1
$('.tab_head1').css({backgroundImage:"url(images/tab-closed-line.jpg)"});

//tab2
$('.tab_head2').css({backgroundImage:"url(images/tab-closed-line.jpg)"});

//hide the other tabs
$(".tab_body1").slideUp("slow");
$(".tab_body2").slideUp("slow");

//if tab is hidden, slide it down
if ($(".tab_body3").is(":hidden")) {
$(".tab_body3").slideDown("slow");
}else{
$(".tab_body3").slideUp("slow");
$('.tab_head3').css({backgroundImage:"url(images/tab-closed.jpg)"});
}

});// END CLICK TABHEAD3


});

