/**
 * trigger suckerfish properly when ie is rendering.
 **/
$(document).ready(function()
{
	if($.browser.msie)
		{
		$(".subnav").hover(function(){
		$(this).addClass("over");
		$(this).find('> ul').addClass("nextul");
		},function(){
			$(this).removeClass("over");
			$(this).find('> ul').removeClass("nextul");
		});
	}
});