$(document).ready(function()
{
	// =====> Navigation functions <=====
	$("#main-navigation a.active, #secondary-navigation a.active").addClass("disabled").click(function()
	{
		return false;
	});
	
	// =====> Collapse / Expand function <=====
	
	//english
	$(".more").hide();
	$(".more").after('<p class="show"><a href="#">- More -</a></p>');
	$(".show a").toggle(function()
	{
		$(this).parent().prev().slideDown("slow");
		$(this).text("- Hide -");
	},
	function()
	{
		$(this).parent().prev().slideUp("slow");
		$(this).text("- More -");
	});
	
	//finnish
	$(".more-fi").hide();
	$(".more-fi").after('<p class="show-fi"><a href="#">- Lisää -</a></p>');
	$(".show-fi a").toggle(function()
	{
		$(this).parent().prev().slideDown("slow");
		$(this).text("- Piilota -");
	},
	function()
	{
		$(this).parent().prev().slideUp("slow");
		$('.show-fi a').text("- Lisää -");
	});	
	
	// =====> External link function <=====
	$("a[@rel='external']").click(function()
	{
		window.open($(this).attr("href"));
		return false; 
	});
	
	
	// =====> Expand / Collapse function for Press Kits <=====

	if($('body').hasClass('media'))
	{
		$('.ecBlock:not(:first) >').not('h4').hide();
		$('.ecBlock h4').append(' &raquo;').wrap('<a href="#" class="toggle"></a>');
		$('.ecBlock a.toggle').toggle(
			function()
			{
				$(this).siblings().slideDown("fast");
				return false;
			},
			function()
			{
				$(this).siblings().slideUp("fast");
				return false;
			});
	}
	
});
