$(document).ready(function() {
	$(document).pngFix();
});

$(document).ready(function() {
	$(".event-grid").click(function() {
		window.location = $(this).find("h2:first a:first").attr("href");
	});
	
	$("#go_departments").change(function() {
		if($(this).val() != ' ')
		{
			window.location = 'http://www.kulturkammaren.se/medlemsforeningar/'+$(this).val();
		}
		
	});

	$(".show_popup").mouseover(function()
	{
		var target = '.'+$(this).attr('rel');
		var position = $(this).position();
		$(target).css('top', position.top - 84);
		$(target).css('left', position.left - 30);
		
		$(target).show();
	}).mouseout(function()
	{
		var target = '.'+$(this).attr('rel');
		$(target).hide();
	});
});
