$(document).ready(function(){
	$('#nav-main li a, .nav-tool').hover(
		function() {
			var thisid = $(this).attr('id');
			var tools = thisid.split('-');
			var tool = tools[1];
			if(thisid != '') {
				$('#nav-' + tool + '-tool').show();
			} else {
				$('#nav-myaccount-tool').show();
			}
		},
		function() {
			$('.nav-tool').hide();
		}
	);	
	//function call here.
});



