window.addEvent('domready',function(){
	new sIFR('#cont2 h1','css/italic.swf',{fontSize:16,shadowColor: 'ffffff',shadowDistanceX: 0,	shadowDistanceY: 0});
	if(Browser.Engine.trident4){
		$$('.topic, #cont3 ul li').addEvents({
			'mouseenter':function(){
				this.addClass('hover');
			},
			'mouseleave':function(){
				this.removeClass('hover');
			}
		})
	}
});