

$(document).ready(function() {
			setTimeout("animation()",500);
			$("a.print").click(function(){
				$("#printcss").attr("href","/css/print.css");
				window.print();
				return false;
			});
			$("#query").toggle(function(){
				$("#object").val($(".sNews02 h1").text());
				$("#email_form").show();
			},function(){
				$("#email_form").hide();
			});
		});		
		function animation(){
			shar();
		}
		function shar(){
			$(".shar").animate({left:"450px", top:"-30px"}, 45000).animate({left:"-200px", top:"10px"}, 55000).animate({left:"-10px", top:"5px"}, 45000)
			setTimeout("shar()",10000);
		}
0
