function setEqualHeight(columns){
	var tallestcolumn = 0;
	columns.each(
	function(){
		currentHeight = $(this).height();
		if(currentHeight > tallestcolumn){
			tallestcolumn = currentHeight;
		}
	});
	columns.height(tallestcolumn);
}
$(document).ready(function() {
	setEqualHeight($("#staff > li"));
	$("a img").opOver();
	$('#flash').flash({
		src:'bridal.swf',
		width:660,
		height:380
	},{ version: 8 });
	$(".lightbox").colorbox();
	$("a[rel='lightbox']").colorbox();
});

