var JP = {
	
}

// when document is loaded, do some stuff
$(document).ready(function()
{
	// in header - make submenus a little bit transparent
	$('div.header li.menu-sub div').css('opacity', 0.80);
	
	// in header - bind hover of top menus so it'll display submenus
	$('div.header li.menu-sub').hover(
		function() { $('div', this).show(); },
		function() { $('div', this).hide(); }
	);
});


function click()
{
	if (event.button==2)
	{
		alert('Copyright Johnny\'s Petshop');
	}
}
document.onmousedown = click;