AudioPlayer.setup("/wp-content/themes/northbike/js/player.swf", {  
	width: 290,  
	initialvolume: 50,  
	transparentpagebg: "yes"
});

$(document).ready(function(){ 
	$(document).pngFix();
	
$('.newslist ul li a').click(function() {
	$('.newslist ul li').each(function(key, item) {
		$(item).removeClass('active');
	});
	
	$(this).parent().addClass('active');
	
	
	var id = $(this).attr('href');
	
	$('.rightcolumn').html('<div id="load">Laddar...</div>');
	
	$.ajax({
		url: "/wp-content/themes/northbike/get_news_item.php",
		data: {id: id},
		dataType: "json",
		success: function(data, status) {
		
			$('.rightcolumn').html('<img src="'+data.image + '" alt="" width="400" />' + 
			'<h1>'+data.post_title+'</h1><p>' + data.post_excerpt + '</p>' + '<a href="'+data.guid+'">L&auml;s mer</a>');
			console.log(data);
		}
	});
	
	return false;
});

	
	 
}); 
//GLOBALS
var galleryButtonImage = '/wp-content/themes/northbike/images/imagegallery_play.png';

var defaultIGSettings = {
	phpFile: '/wp-content/themes/northbike/js/imagegallery.php',
	mouseInfoDiv: {
		previousCSS: {
			'background': 'url(/wp-content/themes/northbike/images/imagegallery_previous.png) center center no-repeat',
			'opacity': .6
		},
		nextCSS: {
			'background': 'url(/wp-content/themes/northbike/images/imagegallery_next.png) center center no-repeat',
			'opacity': .6
		},
		closeCSS: {
			'background': 'url(/wp-content/themes/northbike/images/imagegallery_close.png) center center no-repeat',
			'opacity': .6
		},
		mouseDistance: {
			top: 7,
			left: 0
		}
	}
}
