var $j = jQuery;

$j().ready(function() {	
	$j('.parent').hover(
	    function() { $j(this).addClass('over');},
	    function() { $j(this).removeClass('over');
	});
	
	var ua = navigator.userAgent;
	if(ua.indexOf("MSIE 6") >-1) {
	}
	else {
		FLIR.init(new FLIRStyle( { realFontHeight: true, mode: 'wrap' } ));
		FLIR.auto(['h1','h2','h3']);
	}
});