jQuery.noConflict();

jQuery(function ($)
{
    $(document).ready(function ()
    {
        var scrollSpeed = 500;

        $('.top_button').click(function ()
        {
			/* Added body in to fix problem in Chrome*/
            $('html,body').animate({
                scrollTop: 0
            }, scrollSpeed, 'swing', function ()
            {
                //dfsd
            });
            return false;
        });

        $('#recent_talk_button').click(function ()
        {
            var pos = $('body #talk').position();
            /* Added body in to fix problem in Chrome*/
			$('html, body').animate({
                scrollTop: (pos.top-10)
            }, scrollSpeed, 'swing', function ()
            {
                //dfsd
            });
            return false;
        });
    });
});



