$(function ()
		{
		    var msie7orMinus = $.browser.msie && $.browser.version < 8;
		    
			$('div.taxonomy ul.row li').css({
				'height' : 		52
			});
			
			$('div.taxonomy ul li div.sub').css({
				'display':'none',
				'position' : 	'absolute',
				'top' : 		52,
				'left' : 		0,
				'width' : 		'660px',
				'z-index' : 	99999
			});
			
			$('.homepage div.taxonomy ul li div.sub').css({
				'display':'none',
				'position' : 	'absolute',
				'top' : 		52,
				'left' : 		0,
				'width' : 		'940px',
				'z-index' : 	99999
			});
			
			$('.taxonomy ul.row li').mouseenter(function(){
				
				if (bForceBrowseRedraw && msie7orMinus)
				{
				    var zIndexNumber = 1000;
	                $('div').each(function() {
                        $(this).css('zIndexOld', $(this).css('zIndex'));
	                    $(this).css('zIndex', zIndexNumber);
	                    zIndexNumber -= 10;
	                });
				}
				
				$(this).addClass('open');
				//$('this').css({
				//	 'background' :	'rgb(23,53,76)'
				//});
				
				/* IE 7 */
				$(this).parent('ul.row').css({'z-index' :	2});
			});
			
			$('.taxonomy ul.row li').mouseleave(function(){
				$(this).removeClass('open');
				
				if (bForceBrowseRedraw && msie7orMinus)
				{
			        $('div').each(function() {
		                $(this).css('zIndex', $(this).css('zIndexOld'));
	                });
                }
				
				/* IE 7 */
				$(this).parent('ul.row').css({'z-index' :	1});
				
			});
			
		});
