// 
//  application.js
//  NACC: North American Choral Company
//  
//  Created by Aaron Vanderzwan on 2009-12-08.
//  Copyright 2009 Conduit Studios. All rights reserved.
// 

$(function(){
	// Lightbox
	$("a[rel^='prettyPhoto']").prettyPhoto({
		showTitle: false,
		theme: 'light_rounded'
	});
	// Focusmagic
	$('.focusMagic').focusMagic();
	
	// Slideshow
	$('.homeBG .bgImage').cycle('fade');
	
	// Remove images that don't have a src
	$('img').each(function(){
		if($(this).attr('src')==''){
			$(this).remove();
		}
	});
	
	$('#home embed').width(226);
	
});
