Shadowbox.init({
   skipSetup: true
});
(function($){
	$(document).ready(function(){
		$('.lightboxYouTube,.lightboxSwf').click(function() {
			Shadowbox.open({
				content: this.href,
				player: 'swf',
				title: this.title || '',
				width: 480,
				height: 360
			});
			return false;
		});
		$('.lightboxFlv').click(function() {
			Shadowbox.open({
				content: this.href,
				player: 'flv',
				title: this.title || '',
				width: 480,
				height: 360
			});
			return false;
		});
		$('.lightboxQuickTime').click(function() {
			Shadowbox.open({
				content: this.href,
				player: 'qt',
				title: this.title || '',
				width: 480,
				height: 360
			});
			return false;
		});
		$('.lightboxWmv').click(function() {
	        Shadowbox.open({
		        content: this.href,
		        player: 'wmp',
		        title: this.title || '',
		        width: 480,
		        height: 360
	        });
	        return false;
		});
		$('.lightboxImage').click(function() {
	        Shadowbox.open({
		        content: this.href,
		        player: 'img',
		        title: this.title || ''
	        });
	        return false;
		});
	});

})(jQuery);
