var bcsGfxDir = "http://blog.martinnilsson.se/wp-content/themes/bcsFREEmium/img/";

$(document).ready(function(){
	// Skapar hoover-funktion på bullets
	$("#sidebar1 .widget ul li a").each(function(){
		var p = $(this).parent();
		$(this).mouseover(function(){
			p.css("background-image","url("+bcsGfxDir+"list_bullet_hot.png)");		
		});
		$(this).mouseout(function(){
			p.css("background-image","url("+bcsGfxDir+"list_bullet_ljus.png)");	
		});
	});
	$("#sidebar2 .widget ul li a").each(function(){
		var p = $(this).parent();
		$(this).mouseover(function(){
			p.css("background-image","url("+bcsGfxDir+"list_bullet_hot.png)");		
		});
		$(this).mouseout(function(){
			p.css("background-image","url("+bcsGfxDir+"list_bullet_dark.png)");	
		});
	});
});