$(document).ready(function(){

    $("ul#gen li").hover(function(event)
		{ 

        $(this).find("ul.sub").fadeIn('fast').show();

        $(this).hover(function() {
        }, function(){
            $(this).find("ul.sub").fadeOut('fast');
        });

//        event.preventDefault();
      });


	setInterval(function(){	$("div#topimage div").fadeToggle("slow")}, 10000);
	



/*
    $("ul#des li.top").click(function(event)
		{

        $(this).find("ul.sub2").slideToggle('fast').show();
        event.preventDefault();
    });
*/


});


