$(function() {

	$('#footer-carousel').jcarousel({
        scroll: 5
    });
	
	$(".b-concert .map a").colorbox({width:"80%", height:"80%", iframe:true});
	$(".b-gallery a[rel=lightbox]").colorbox();
	//lightbox[maxigallery]
	
	$('.tpl-press-kit').parent().addClass('tpl-press-kit-html');
	
	$('.b-track-list a').each(function(){
		$(this).attr('title', 'Click to play/stop track...');
	});
	$('.b-track-list a').click(function() {
		var sMP3 = $(this).attr('href');
		
		if($(this).hasClass('played')){
			$("#jpId").jPlayer("stop");
			$(this).removeClass('played');
		} else {
			$('.b-track-list a').removeClass('played')
			$("#jpId").jPlayer( "clearFile" ).jPlayer("setFile", sMP3).jPlayer("play");
			$(this).addClass('played')
		}
		
		return false;
	});
	
	$("#jpId").jPlayer( {
		swfPath: "/assets/templates/s/js/"
	});
});
