/**
 *
 * MENU DROP DOWN
 *
 */
$(function(){
	//dropdown
	$("ul#nav-features li").hover(function(){
		jQuery(this).find('ul').css('display','block');
		jQuery(this).find('ul').parent().attr('style','_margin-bottom:-12px;');
	}, function(){
		jQuery(this).find('ul').css('display','none');
		jQuery(this).find('ul').parent().attr('style','_margin-bottom:2px !important;');
	});	
    //hack ie for z-index
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});

});

