/** CASE JS 

Mainly fixes hover problems with IE6.

**/

var fixCaseHovers = function(){
	if(Browser.Engine.trident4){		
		var elements = $('column1_case_down').getChildren('p.case').addEvents({
		
			'mouseenter': function(){
				this.get('morph').set('#case_hover');
			},
			'mouseleave': function(){
				this.get('morph').set('#case_no_hover');
			}
		
		})
	}
};
