/** CASE JS 

Mainly fixes hover problems with IE6.

**/

var fixNewsHovers = function(){
	if(Browser.Engine.trident4){

		$('news_left_links').getChildren('p').addEvents({
		
			'mouseenter': function(){
				this.get('morph').set('#news_p_hover');
			},
			'mouseleave': function(){
				this.get('morph').set('#news_p_no_hover');
			}
		
		})
			
	}
};
