﻿$(function() {

	// Init lightbox
	$('a.lightbox').each(function() {
		var $a = $(this);
		var colorboxConfig = {
			opacity: 0.7,
			close: "",
			width: "530px",
			maxHeight: "90%",
			scrolling: false, //IE7
			onComplete: function(){
				$.colorbox.resize(); //IE7
			}
		}
		$a.colorbox(colorboxConfig);
	});
});
