jQuery(document).ready(function() {
	var extensions = new Array('jpg', 'jpeg', 'gif', 'png', 'm4v', 'mp4', 'flv');
	extensions = jQuery(extensions);
	var selectorString = '';
	
	extensions.each(function () {
		selectorString += "a[href$='" + this + "'], a[href$='" + this.toUpperCase() + "'],";
	});

	var imageLinks = jQuery(selectorString);
	
	imageLinks.each(function () { // adds shadowbox to each image link
		if (this.href.match(/m4v$|mp4$|flv$/)) { // if this is a movie
			this.rel += "shadowbox[gallery];width=600;height=338;";
		} else {
			this.rel += "shadowbox[gallery]";
		}
	});
	
	var sboxopts = Shadowbox.getOptions();
	// console.log(sboxopts);
	sboxopts.ext.flv.push('m4v');
	
	var sbOptions = {
		animSequence: "sync",
		resizeDuration: "0.2",
		fadeDuration: "0.2",
		flvPlayer: "http://nicandheather.com/wp-content/themes/johnsonfamily/js/player.swf",
		ext: sboxopts.ext
	};
	
	Shadowbox.init(sbOptions);
});