$(document).ready(function(){

		
		$('#andersonwheelerlogo').hide().fadeIn(5000);	
		
		
		// dodanie efektu "zebra" do tabeli np. new guns
		
		$(".zebra tr.normal").hover(function(){	
				$(this).addClass('pasek');	
		},
		function() {			
			$(this).removeClass('pasek');	
			
		});
		
});
