var ie6menu = {

	
	enter:function() {
		$(this).addClass("hover");

		var ul = $(this).children("ul");
		var iframe = ul.children("iframe");
		
		if (iframe.length > 0)
			iframe.height(ul.height()).width(ul.width());
	},
	
	leave:function() {
		$(this).removeClass("hover");

		var ul = $(this).children("ul");
		var iframe = ul.children("iframe");

		if (iframe.length > 0)
			iframe.height(0).width(0);
		
	}
	
}

function dropdownIE6() {

	$("li").bind("mouseenter", ie6menu.enter);
	$("li").bind("mouseleave", ie6menu.leave);
	
}
