/* fade-in animation for Firefox */
//@cc_on /*
(function($) {
	if($.support.checkOn && $.support.leadingWhitespace){
		$('<style />',{
			type:'text/css',
			text:'#article {display: none;}'
		}).appendTo('head');
	}
})(jQuery);

jQuery(function(){
	if($.support.checkOn && $.support.leadingWhitespace){
		$('#article').fadeIn(250);
	}
});
//@cc_on */

/* tooltip for !IE *//*
if($.support.leadingWhitespace) {
	$(document).ready(function() {
		//for !IE
		//show tooltip
		$("#header_logo").tooltip({
			position: 'bottom center',
			relative: true,
			effect: 'slide'
		});
	});
}*/
