var $j = jQuery.noConflict();


 $j(document).ready(function() {
		
		$j('#enterno-info').hide();
							 
        var hide = false;
        $j("img.enterno-logo").hover(function(){
            if (hide) clearTimeout(hide);
            $j("#enterno-info").fadeIn();
        }, function() {
            hide = setTimeout(function() {$j("#enterno-info").fadeOut("slow");}, 450);
        });
        $j("#enterno-info").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$j("#enterno-info").fadeOut("slow");}, 450);
        });
 });


 $j(document).ready(function() {
		
		$j('.block').hide();
							 
        var hide = false;
        $j("h3.title").hover(function(){
            if (hide) clearTimeout(hide);
			$j(this).parents('div.otsikko').find('div.block').fadeIn();       
        }, function() {
            hide = setTimeout(function() {$j(".block").fadeOut("fast");}, 150);
        });
        $j(".block").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$j(".block").fadeOut("fast");}, 150);
        });
 });

