(function($) {
	
	$(document).ready(function () {
		
		// manage over logo
		$('#header a').hover(function () {
			$(this).addClass('hover');
		}, function () {
			$(this).removeClass('hover');
		});
		
	});
	
})(jQuery);
