/*
jQuery.noConflict();					
jQuery(document).ready(function(){

 

    jQuery('#mybild').mouseover(function() {
      //alert('fadein');
      jQuery('#logotext').fadeIn('slow');
      
    });
    jQuery('#mybild').mouseout(function() {
      jQuery('#logotext').fadeOut('slow');
      //alert('fadeout');
    });
 
});

*/
