$(document).ready(function(){

	//Hides more then five links in the sidebar
	$("#promo4 ul li:gt(4), #topFiveComments ul li:gt(4), #topFiveLinked ul li:gt(4)").hide();

	//Expandes promo4
	$("#promo4 a.showMore").click(function(){
		$("#promo4 ul li:gt(4)").slideToggle("1500");
		$(this).toggleClass("active");
		return false;
	})

	//Expandes topFiveComments
	$("#topFiveComments a.showMore").click(function(){
		$("#topFiveComments ul li:gt(4)").slideToggle("1500");
		$(this).toggleClass("active");
		return false;
	})

	//Expandes topFiveLinked
	$("#topFiveLinked a.showMore").click(function(){
		$("#topFiveLinked ul li:gt(4)").slideToggle("1500");
		$(this).toggleClass("active");
		return false;
	})

	//Expandes commentform
	$("#interact .kommentera a").click(function(){
		$("#commentform").slideToggle("1500");
		return false;
	})
	
	$("#commentLink").click(function(){
		$("#commentform").slideToggle("1500");
		return false;
	})

	// Print button
	$(".print").click(function(){
		print();
		return false;
	});

});

//anropa thickbox från flash
function callTBFromFlash(url){
	var t = this.title || this.name || null;
	var t = 'flashlink1';
	//var a = this.href || this.alt;
	var a = url;
	//var g = this.rel || false;
	var g = false;
	tb_show(t,a,g);
}
