//if ( !(jQuery.browser.msie && jQuery.browser.version < 7)) { // take away IE6 
	$(document).ready(function(){
		$("#dropDownByCategory").hoverIntent({
			sensitivity: 3, 
			interval: 200, 
			over: showCatList, 
			timeout: 500, 
			out: hideCatList
		});
	});
	
	$(document).ready(function(){
		$("#dropDownByName").hoverIntent({
			sensitivity: 3, 
			interval: 200, 
			over: showNameList, 
			timeout: 500, 
			out: hideNameList
		});
	});
		
	function showCatList(myDivElemement){ $(this).animate({"height":50},200).html( $(this).html() + $('#dropDownByCategoryHover').html() );}
	function hideCatList(myDivElemement){ $(this).animate({"height":16},200).html( $('#dropDownByCategoryDefault').html() );}
	
	function showNameList(myDivElemement){ $(this).animate({"height":50},200).html( $(this).html() + $('#dropDownByNameHover').html() );}
	function hideNameList(myDivElemement){ $(this).animate({"height":16},200).html( $('#dropDownByNameDefault').html() );}
//}