
	$(function () {

        $(".main-nav-item ").click(function(e) {
            e.preventDefault();
            window.location = $(this).children("a").attr("href");
        });

		$("div.eu").hide()

		$("a#showEU").click(function() {
			$("div.eu").show();
			$("div.local").hide();
			$("a#showEU").addClass('active-button');
			$("a#showLocal").removeClass('active-button');
		});

		$("a#showLocal").click(function() {
			$("div.local").show();
			$("div.eu").hide();
			$("a#showEU").removeClass('active-button');
			$("a#showLocal").addClass('active-button');
		});

		$('#smedia-floater').children('a').each(function() {
            $(this).hover(function() {
                $(this).animate({
                    marginLeft : "0px",
                }, 200);
            }, function() {
                $(this).animate({
                    marginLeft : "15px",
                }, 200);
            });
        });
	});
