/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

jQuery(document).ready(function() {
   
    jQuery('#link-to-top').click(function(){
        jQuery('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
//    alert('Vishal');

});

