$(document).ready(function(){

	//Gör dropdown meny på kateogriobjekt
	$('.press-box').hover(function(){
		$(this).find('.press-box-menu-hover').show();
		$(this).find('.press-box-menu-hover-single').show();
	},
	function(){
		$(this).find('.press-box-menu-hover').hide();
		$(this).find('.press-box-menu-hover-single').hide();
	});
	$('.press-box-menu-hover').hover(function(){
		$(this).find('.sub-dropdown').slideDown(80);
	},
	function(){
		$(this).find('.sub-dropdown').slideUp(150);
	});

	
	//Gör utfällbar meny med knappen bredvid rubriken
	$('.button-in-header').hover(function(){
		$(this).addClass('over');
		$(this).children('ul').slideDown(80);
	},
	function(){
		$(this).removeClass('over');
		$(this).children('ul').slideUp(150);
	});	
	
	
	//Visar knappen på press-releases
	$('.press-releases li').hover(function(){
		$(this).children('a').show();
	},
	function(){
		$(this).children('a').hide();
	});
	
	
	$('#user_login').focus(function(){
		$('.form-rest').slideDown(300);
	});	

	jQuery('#star').vibrate();	
	
});