// Slider-Call
$(document).ready(function() {
	$("#hover-menu > li").css({'marginRight': '-60px'}).hover(function() {
		$(this).animate({
			marginRight:"0px"
		}, 300);
	}, function() {
		$(this).animate({
			marginRight:"-60px"
		}, 300);
	});
});