/* Menu hovers & rotator init */
$(function(){

	$("#rotator").cycle({
		pause:true,
		fx:"scrollHorz,fade,scrollVert,uncover",
		timeout:5000
	});	


		$("#nav").find("a").attr("title","");

  $("#nav li ul").hide(); 
	$("#nav li").hover(
        function () {
    $(this).addClass("hover")
		$(this).children("ul").css("z-index",99999).show().addClass("hover");
        },function(){
    $(this).removeClass("hover")
		$(this).children("ul").hide().removeClass("hover");
	});//hover
	

/*IE6*/
$("a img").parent().css("border",0);

//mtjs_iepnghandler_solo.go();
});


