// ------------------------------------------------------------------------
// admin homepage > highlight tools on hover
// ------------------------------------------------------------------------
$(function() {

    // Create hovers for the div
	$('div.stage div.service').hover(
	    function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
	);
	
	// Inherit the href up to the divs from their child a's
	//$('ul.tool_group li').click(
	//	function() {
	//		self.document.location = $(this).find('a').get(0).href;
	//	}
	//);
});

