$(document).ready(function() {

	//$('body').addClass('hasjs')	
	$("div#footer ul li:last-child").addClass("last");
	//$("div#content p:last-of-type").addClass("last");
	
	/*$("div.teaser:last-child").addClass("last");
	$("div.landing-grid ul li:first-child").addClass("first");*/
	
	// switch link attribute rel='external' to target='_blank'
	$('[rel=external]').removeAttr('rel').attr( 'target', '_blank' ); 
	
	// fancybox 
	/*if($('#contactlink').length > 0 ) {
		$("#contactlink").fancybox({
				'titleShow'     : false,
				'transitionIn'  : 'elastic',
				'transitionOut' : 'elastic'
		});
	}*/

});

$(".mt_youtube").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});

