// Created by skinbox.net

jQuery.noConflict();

jQuery(document).ready(function($){

	$('a[href=#top]').click(function(){
		$('html, body').animate({scrollTop:0}, 400);
        return false;
	});
	
	$(".forum_name").hover(function() {
		$(this).next(".forum_desc_pos").children(".forum_desc_con").stop().animate({left: "0", opacity:1}, "fast").css("display","block")
	}, function() {
		$(this).next(".forum_desc_pos").children(".forum_desc_con").stop().animate({left: "10", opacity: 0}, "fast", function(){
			$(this).hide();
		})
	});

});
