$(document).ready(function(){
	if(document.location.href.indexOf("soeport.se/") != -1 ||
	   document.location.href.indexOf("adara/") != -1 ||
	   document.location.href.indexOf("localhost/") != -1)
	{
	    //Enable headerlogin 
	    $("#headerTopItems .login").click(function(){
		    $("#loginBoxWrapper").toggle();
		    return false;
	    });
    	
	    //Setup descending div z-indexes
	    var zIndexNumber = 1000;
	    $('div').each(function() { 
		    if(zIndexNumber >= 0){
			    $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; 
		    }
	    });
	    
	    $('div#start-modules div.background.png').css('zIndex', 50);
	}
})