// JavaScript Document
 $(document).ready(
	function() 
	{
		$('.inner').hide();
		$('.button_wrapper').hoverIntent
		(
			function (){$(this).stop(false, true).children('.inner').slideToggle(200);}, 
			function (){$(this).stop(false, true).children('.inner').slideToggle(200);}

		);
	}
);

   
function btnon(btn, loc)
{
	var location = loc;
	
	/* HOME PAGE */
	if(loc == "bottom"){var location ="-193px -24px";}
	if(loc == "bottom left"){var location ="-180px -24px";}
	if(loc == "bottom right"){var location ="-210px -24px";}

	/* SECONDARY PAGES */
	if(loc == "top"){var location ="-193px 0px";}
	if(loc == "top left"){var location ="-180px 0px";}
	if(loc == "top right"){var location ="-210px 0px";}

	document.getElementById(btn).style.backgroundPosition = location;
	//document.getElementById(btn).style.zIndex = 999999999999999999999;
		//alert(document.getElementById(btn).style.backgroundPosition);

}      

function btnoff(btn, loc)
{
	var location = loc;
	
	/* HOME PAGE */
	if(loc == "bottom"){var location ="-13px -24px";}
	if(loc == "bottom left"){var location ="0px -24px";}
	if(loc == "bottom right"){var location ="-30px -24px";}

	/* SECONDARY PAGES */
	if(loc == "top"){var location ="-13px 0px";}
	if(loc == "top left"){var location ="0px 0px";}
	if(loc == "top right"){var location ="-30px 0px";}

	document.getElementById(btn).style.backgroundPosition = location;
}      

