jQuery.noConflict();

var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover

jQuery(document).ready(function(){

    //if (jQuery) { alert("jQuery loaded"); } 


   jQuery('div.news-catmenu ul > li').hover(function() {
        if (obj) {
	    	obj.find('ul').fadeOut('fast');
	    	obj = null;
	    } //if
    	jQuery(this).find('ul').fadeIn('fast');
    }, function() {
    	obj = jQuery(this);
	    setTimeout(
    		"checkHover()",
	    	400);
    });
    
    jQuery('.tx-timtabtwitter-pi1').innerfade({
        speed: 750,
        timeout: 5000,
        containerheight: '30px'
    });

});