$(document).ready(function() {	
	initialHide();
	toggleDescription();
	
});

function setToggle()
{

}


function initialHide()
{

$('.descriptionToggle .hiddenDescription').css('display','none');
}

function toggleDescription()
{

$('.descriptionToggle a').each(function() {

if($(this).parent().children(".hiddenDescription").text() =="")
	$(this).css('display','none');   
});


	$('.descriptionToggle a').click(function() {
if($(this).text()=="Mer")
{
$(this).text("Mindre");
$(this).parent().children(".hiddenDescription").css('display','inline');    
}
else
{
$(this).text("Mer");
$(this).parent().children(".hiddenDescription").css('display','none');    
}
    return false;
  });

}










