$(function(){
    $(".topm").scrollable({circular: true});
    $(".menuList ").hover(
        function(){
            $(".menuList .sub").hide();
            $(this).children('.sub').show();
        },
        function(){
        }
        );
    $(".sub").hover(
        function(){
        },
        function(){
            $(".menuList .sub").hide();
        }
        );
            
    $('ul.sub').hide();
            
    $("ul.LMenu li.sub").hover(
        function(){
            $(this).children('ul.sub').stop().show('fast');
        },
        function(){
            $(this).children('ul.sub').hide('fast');
        }
        );
            
    $(".pageContent tbody tr:even").addClass("tr_odd");
    // $(".pageContent tbody tr").hover(function(){
        // $(this).addClass('active');
    // },
    // function(){
        // $(this).removeClass('active');
    
    // }
    
    // );
    // $().UItoTop({
        // easingType: 'easeOutQuart'
    // });
	
    $("#toTop").click(function(){
		$('html, body').animate({scrollTop:0}, 1200);
		return false;
	});
});


