// JQuery Document Ready Functions \\
$(document).ready(function() {
	
	// Event Handlers \\
	$("#return_shopping").bind("click", function(e){ history.go(-1); e.preventDefault(); });
	
	// IE hacks -- Only added if the user is using IE \\
	if($.browser.msie) {
		$('body').css('behavior', 'url(includes/csshover.htc)');
		
		$('* html div#darts_menu.vertical a').css('zoom', '100%');
		$('* html div#darts_menu ul ul a').css('zoom', '100%');
		$('* html div#darts_menu').css('z-index', '1');
		$('* html div#darts_menu ul li ul').css('z-index', '400');
		
		$('* html div#billiards_menu.vertical a').css('zoom', '100%');
		$('* html div#billiards_menu ul ul a').css('zoom', '100%');
		$('* html div#billiards_menu').css('z-index', '1');
		$('* html div#billiards_menu ul li ul').css('z-index', '400');
	}
	
	// Preload images \\
	$.preloadCssImages();
});
