$(document).ready(function () {

	$('.image_container').click(function() {

		var id = $(this).attr('id');

		$('.image_'+id).show();		

	});

	$('.image').click(function() {

		var id = $(this).attr('id');

		$('.image_'+id).hide();	

	});

	$('.image_close').click(function() {

		var id = $(this).attr('id');

		$('.image_'+id).hide();	

	});

});


function nyttFonster(minsajt, namnet, bredd, hojd, scroll) { 
  var venster = (screen.width - bredd) / 2; 
  var uppifroon = (screen.height - hojd) / 2; 
  hurdant = 'width='+bredd+',height='+hojd+',top='+uppifroon+',left='+venster+',scrollbars='+scroll+',resizable' 
  win = window.open(minsajt, namnet, hurdant) 
  if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } 
} 



function visa(id) { 
  if(document.getElementById) { var obj = document.getElementById(id); } 
  else 
    if(document.all){ var obj = document.all(id); } 
    if(obj.style.display == 'none'){ obj.style.display = ''; } 
    else { obj.style.display = 'none'; } 
}	
