Shadowbox.init();

$(function() {
	Shadowbox.setup('.iframeShadowbox', {
	    player: 'iframe',
	    width: 580,
	    overlayColor: "#000",
	    overlayOpacity: 0.4,
	    height: 600
	});

	Shadowbox.setup('.contactForms', {
	    player: 'iframe',
	    width: 600,
	    overlayColor: "#000",
	    overlayOpacity: 0.4,
	    height: 400
	});


		$('.lightboxImage').click(function() {
	        Shadowbox.open({
		        content: this.href,
		        player: 'img',
		        title: this.title || ''
	        });
	        return false;
		});

});


