$(document).ready(function(){
	$(".navigation li").hover(
		function () {
			$(this).addClass("over");
		},
		function () {
			$(this).removeClass("over");
		}     
	);
});
$(function () {
	$('#header .customers').marquee('customers');
});

