
// Hover hints

$(document).ready(function(){

	$("#links a, #SlideWrap a").hover(function() {
		$(this).next("div").animate({opacity: "show", top: "-46", left: "50"}, "slow");
	}, function() {
		$(this).next("div").animate({opacity: "hide", top: "-46", left: "50"}, "fast");
	});

});


// Vertical Nav accordion 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 div.menu-head").click(function()
    {
		$(this).next("div.submenu").slideToggle(500).siblings("div.submenu").slideUp("slow");
       	$(this).siblings();
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane div.menu-head").click(function()
    {
	     $(this).next("div.submenu").slideToggle(500).siblings("div.submenu").slideUp("slow");
         $(this).siblings();
	});
});

// Vertical Nav accordion 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 div.head").click(function()
    {
		$(this).next("div.subtext").slideToggle(500).siblings("div.subtext").slideUp("slow");
       	$(this).siblings();
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane div.head").click(function()
    {
	     $(this).next("div.subtext").slideToggle(500).siblings("div.subtext").slideUp("slow");
         $(this).siblings();
	});
});


// Shadowbox
Shadowbox.init({
     overlayOpacity: 0.7,
	language: 'en',
    players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv', 'asp']
});

