
// -- STARTUP

$(document).ready(function(){
	
	// Collapse accordion
	$('ul').accordion();

	// Push lastfm playlist	
	// $('#lastfm').load('http://njc002.free.fr/extra/lastfm.php');

	// Fancybox
	$("a.pic").fancybox({
		'margin':50,'padding':0,'centerOnScroll':true,'autoScale':true,'overlayColor':'#666','overlayOpacity':0.4,'autoDimensions': false
	});
	
	$("a.youtube").each(function(){
		var dWidth = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));
		var dHeight =  parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));
		$(this).fancybox({
			'width':dWidth,'height':dHeight,'padding': 0,'autoScale': false,'centerOnScroll':true,'overlayColor':'#666','overlayOpacity':0.4,
			'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type' : 'swf','swf':{'wmode':'transparent','allowfullscreen':'true'}
		});
	});
	
	$("a.vimeo").each(function(){
		var dWidth = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));
		var dHeight =  parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));
		var surl = this.href.split('?')[0];
		$(this).fancybox({
			'width':dWidth,'height':dHeight,'padding': 0,'autoScale': false,'centerOnScroll':true,'overlayColor':'#666','overlayOpacity':0.4,
			'href' : surl.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
			'type' : 'swf','swf':{'wmode':'transparent','allowfullscreen':'true'}
		});
	});	
	
});
