$(document).ready(function() {
	Trimm.calendar.init("jq_calendar", getDateFromUrl());
	
	$(".msItem img").fadeTo('slow', 0.4);
	$(".msItem img").hover(function(){
		$(this).fadeTo('slow', 1);
	}, function(){
		$(this).fadeTo('slow', 0.3);
	});
	
	$(".magazine-list a").hover(function(){
		$(this).css("width", "90px");
		$(this).animate({
			"margin-top": '-20px'
		}, 150, function (){
		});
		$(this).children("b").fadeIn();
	},function(){
		$(".magazine-list a b").css("display", "none");
		$(this).css("width", "75px");
		$(this).animate({
			"margin-top": '0px'
		}, 150, function(){
		});
	});
	
	$("#print_button").click(function(){window.print(); return false;});
	

	//ga events
	$("#trimmmain").click(function(){_gaq.push(['_trackEvent', 'Portal', 'Trimmmain banner clicked']);});
	$("#print_button").click(function(){_gaq.push(['_trackEvent', 'Portal', 'Print button clicked', document.title]); return false;});
	$(".magazine-list a").click(function(){_gaq.push(['_trackEvent', 'Portal', 'Liikumine ja Sport. Magazine clicked', $(this).attr('title')]);});
	$(".feed_action a").click(function(){_gaq.push(['_trackEvent', 'Portal', 'Facebook. Feed Read more button clicked', $(this).attr('href')]);});
	
});
