	$(document).ready(function(){
      $('#Text').fadeIn(5000, function() {
        // Animation complete
      });
		$('#webticker').fadeIn(2000, function() {
        // Animation complete
      });
		$("#webticker").webTicker({travelocity: 0.04, direction: 1});
		
	  $("#PrintImg").hover(function() {
			  $(this).attr("src", $(this).attr("src").split(".").join("_hover."));  // adds -hover to the name of the image
	  }, function() {
			  $(this).stop(true,false); // prevents the creation of stacked actions
			  $(this).attr("src", $(this).attr("src").split("_hover.").join("."));  // removes -hover from the name of the image
	  });
	  
	  $("#PrintImg").click(function() {
			print();
	 });

    });
