

$(document).ready(function() {
	jquerycssmenu.buildmenu("main_menu", arrowimages);

	/**
	 * Letar efter li.current, byter dot-bild till "current"
	 */
	$('ul#root').find('li.current .menu_symbol').each(function() {
		$(this).attr('src', 'http://leaderdalalvarna.se/www/images/user/dot_current.png');
	});


	$('ul#root li').mouseover(function() {
		$(this).find('.menu_symbol').each(function() {
			$(this).attr('src', 'http://leaderdalalvarna.se/www/images/user/dot_current.png');
		});
	});
	$('ul#root li[class!=current]').mouseout(function() {
		$(this).find('.menu_symbol').each(function() {
			$(this).attr('src', 'http://leaderdalalvarna.se/www/images/user/dot.png');
		});
	});

	$('ul#root li ul li').mouseover(function() {
		$(this).find('.menu_symbol_small').each(function() {
			$(this).attr('src', 'http://leaderdalalvarna.se/www/images/user/dot_small_current.png');
		});
	});
	$('ul#root li ul li').mouseout(function() {
		$(this).find('.menu_symbol_small').each(function() {
			$(this).attr('src', 'http://leaderdalalvarna.se/www/images/user/dot_small.png');
		});
	});
});

function setLocation(url){
	window.location.href = url;
}
