$(document).ready(function()
{
	//Menu
	$("#header ul li").hover(
	
	function()
    {
        $(this).find("a").animate({
        	color: "#fff"
        }, 200);
    },
  	function()
  	{
  		if ($(this).hasClass("current-menu-item")) return;
  		
  		$(this).find("a").animate({
    		color: "#555"
    	}, 200);
    });
    
    
    //Soliditet
	$("#soliditet a").hover(
	function()
    {
        $(this).animate({
        	width: "271px"
        }, 200);
    },
  	function()
  	{
  		$(this).animate({
    		width: "90px"
    	}, 200);
    });
    
    
	//Contact
	$(".employee").hover(
	function()
    {
        $(this).find("div").animate({
        	height: "75px"
        }, 200, function(){
        	$(this).find(".phone, .email").animate({
        		opacity: 1
        	});
        });
    },
  	function()
  	{
    	$(this).find(".phone, .email").animate({
    		opacity: 0
    	}, 200, function(){
    		$(this).parent().animate({
    			height: "27px"
    		}, 200, function(){
    			$(this).find(".phone, .email").animate({
    				opacity: 0
    			});
    		});
    	});
    });
    
    
	//Modal: Log in
	$("#menu-sub .logga_in").click(function()
	{
		$("#login-modal").modal({
			overlayClose: true,
			opacity: 90
		});
    	return false;
	});
});
