
// RULLGARDINSMENY //

	function showHide(shID) {
	if (document.getElementById(shID)) {
		if (document.getElementById(shID+'-show').style.display != 'none') {
			document.getElementById(shID+'-show').style.display = 'none';
			document.getElementById(shID).style.display = 'block';
		}
		else {
			document.getElementById(shID+'-show').style.display = 'inline';
			document.getElementById(shID).style.display = 'none';
		}
	}
}
 
 
	$(document).ready(function() {
	initMenu();						  
	
	
	$(".nav li").hover(function() {
	$(this).animate({"opacity": "1"}, "fast");
},
function() {
$(this).animate({"opacity": "0.4"}, "fast");
	});
$(".gallery span").hover(function() {
	$(this).find("em").animate({"top": "130px"}, "fast");
},
function() {
$(this).find("em").animate({"top": "150px"}, "fast");
	});
	});
