$(document).ready(function(){
						   
	$('.lightbox').lightBox();
	
	
	// Marquee	
	
	$.ajax({
   			type: "GET",
			cache: false,
   			url: "/ajax_ticker_tape.php",
   			success: function(resulthtml){
				$("#Marquee marquee").html(resulthtml)
				.attr('scrollamount','2')
				.hover(
					function(){$(this).attr('scrollamount','0');}
					,function() {$(this).attr('scrollamount','2');
				});
   			}
 	});
	
});

