$(document).ready(function() {
	/* EBIS */
	$("#link").mouseover(function() {
		$("#ebis img").stop();
		$("#ebis img:first-child").animate({top:0, opacity: 0}, 250, function() {
			$(this).animate({top:15, opacity: 1}, 250);
			$("#ebis img + img").animate({top:35, opacity: 1}, 250);
		});
	});
	$("#link").mouseout(function() {
		$("#ebis img").stop();
		$("#ebis img + img").animate({top:45, opacity: 0}, 250);
		$("#ebis img:first-child").animate({top:0, opacity: 0}, 250, function() {
			$(this).animate({top:15, opacity: 1}, 250);
		});
	});

	/* GOOGLE ANALYTICS
	$.ajax({
		type: "GET",
		cache: false,
		async: true,
		dataType: "json",
		url: base + "default/ga",
		success: function (json) {

				var obj = jQuery.stringify(json)
				alert(obj);

				$.getScript('http://www.google-analytics.com/ga.js', function(){
				try {
					var pageTracker = _gat._getTracker(json.google.analytics);
					pageTracker._trackPageview();
				} catch(err) {
					alert(err);
				}
			});
		}
	}); */
});


