(function(){
    // remove layerX and layerY
    var all = jQuery.event.props,
        len = all.length,
        res = [];
    while (len--) {
      var el = all[len];
      if (el != 'layerX' && el != 'layerY') res.push(el);
    }
    jQuery.event.props = res;
}());

jQuery(document).ready(function($) {
	$("li.submenu").hover(
		function () {
			$(this).children("a").addClass("navHover");
			$(this).children("ul").show();
		},
		function () {
			$(this).children("a").removeClass("navHover");
			$(this).children("ul").hide();
		}
	);

	$("#livePromoWindow").cycle({
		fx: 'scrollHorz',
		speed: 1200,
		pause: 1,
		timeout: 5000,
		prev: '#frame_next',
		next: '#frame_prev'
	});

});
