// JavaScript Document
// Site-wide Javascript Contents

<!-- Preload Images
pic1= new Image(165,31); 
pic1.src="http://toronto.creditedu.org/images/right_arrow.jpg"; 
pic2= new Image(165,31); 
pic2.src="http://toronto.creditedu.org/images/down_arrow.gif"; 
pic3= new Image(1440,1000); 
pic3.src="http://toronto.creditedu.org/images/bg.gif"; 
//-->

<!--//---------------Navi Menu
//  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 p.menu_head").click(function()
    {
		$(this).css({backgroundImage:"url(http://toronto.creditedu.org/images/down_arrow.gif)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp(500);
       	$(this).siblings().css({backgroundImage:"url(http://toronto.creditedu.org/images/right_arrow.gif)"});
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane p.menu_head").mouseover(function()
    {
	     $(this).css({backgroundImage:"url(http://toronto.creditedu.org/images/down_arrow.gif)"}).next("div.menu_body").slideDown(300).siblings("div.menu_body").slideUp(600);
         $(this).siblings().css({backgroundImage:"url(http://toronto.creditedu.org/images/right_arrow.gif)"});
	});
});
// End of Navi Menu
