jQuery(document).ready(function(){
	// front columns equal height
	if(jQuery('.frontColumn')[0]){
		jQuery('.frontColumn').equalHeight();
	}
	
	var innerHeight = jQuery('#inner-wrapper').height();
	var documentHeight = jQuery(document).height();
	
	if(jQuery('#inner-wrapper')[0]){
		if(innerHeight < documentHeight){
			jQuery('#inner-wrapper').css({"height": documentHeight - 50});
		}
		if(innerHeight >= documentHeight){
			jQuery('#inner-wrapper').css({"height": innerHeight});
		}
	}
	
	if(jQuery('#menu1')[0]){
		jQuery('#menu1').css({"height": documentHeight - 185});
	}
	
	//table sorter
	if(jQuery('table.listTable, table.latestTable')[0]){
		jQuery('table.listTable, table.latestTable').tablesorter();
		
	}
	
	//Fancybox	
	$('#specialPopup').fancybox({
		autoDimensions: false,
		width: 490,
		height: 550,
		padding: 2,
		content: $('#skrivtilos').clone()
	});
	$('#skrivtilos').hide();
	
	if ($('#skrivtilos').is('.message')) $('#specialPopup').click();
	if (document.location.href.indexOf('#') > 0) $('#specialPopup').click();
	
});