function add_favorite(a) {
      title=document.title;
      url=document.location;
      try {
        // Internet Explorer
        window.external.AddFavorite(url, title);
      }
      catch (e) {
        try {
          // Mozilla
          window.sidebar.addPanel(title, url, "");
        }
        catch (e) {
          // Opera
          if (typeof(opera)=="object") {
            a.rel="sidebar";
            a.title=title;
            a.url=url;
            return true;
          }
          else {
            // Unknown
            alert('Нажмите Ctrl-D чтобы добавить страницу в закладки');
          }
        }
      }
      return false;
    }


$(document).ready(function() {
						   
						//alert($('#header h1').width());
						//uncomment the string below if you need the ball after the header
						//$('#header div#ball').css({marginLeft: $('#header h1').width()*1.1 + "px"});
						
						$('#shad').css({opacity: 0.3});
						
						setInterval(function(){
											 
											 $('#ball_1').animate({top: "16px"},400);
											 $('#shad').animate({opacity: 1}, 400, function(){
																							
														$('#ball_1').animate({top: "0px"},400);
											            $('#shad').animate({opacity: 0.3}, 400)									
																							});
											 
											 }, 800)
											 
											 
											 
	
    
						   
						
						   	
	
});
  

