$(function() {

	$('a.fancybox').fancybox({
	
		'type' : 'image',
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'titleShow'	: 	false
	
	});
	
    // Initialize Galleria
	$('#galleria').galleria({
	    lightbox: true
	});
	
	
	// Fix youtube iframe content being on the top most layer 
	$('iframe').each(function() {
		var url = $(this).attr("src");
		$(this).attr("src",url+"?wmode=transparent");
	});
	
	$('.cycle').cycle();
	
	$('.new_window').attr('target', '_blank');
	
	$('.coming_soon').click(function() {
		alert("Coming Soon");
		return false;
	});	

});
