$('document').ready( function () {
	/* INIT */

	$('.menu li').hover( function() {

		$(this).addClass('hover');

		var id = $(this).attr('id').split('_');
		$('.menu li ul#m_'+id[1]).show();
	},function(){

		$(this).removeClass('hover');
		
		var id = $(this).attr('id').split('_');
		$('.menu li ul#m_'+id[1]).hide();
	});	
}); 

function nemo(namn,foretag){
	location.href= 'mailto:'+namn+'@'+foretag;
	return false;
}

function showMovie(){
	popup('/movie.php', 'Steens film', 420, 450, 'no', 'no', 'no');
}


function popup (url, name, width, height, status, menu, resizable) {
	var prop = 'toolbar=no,location=no,directories=no,scrollbars=yes,copyhistory=no,';
	prop += 'status='+ (status ? 'yes' : 'no') +',';
	prop += 'resizable='+ (resizable ? resizable : 'yes') +',';
	prop += 'menu='+ (menu ? 'yes' : 'no') +',';
	prop += 'width='+ (width ? width : 500) +',';
	prop += 'height='+ (height ? height : 400);

	var win = window.open(typeof(url) == 'string' ? url : (url.href, name, prop));

	win.focus();
	
	return false;
}
