
$(document).ready(function() {

	$.ifixpng('/gfx/x.gif');
 	$('img[src$=.png],h1#logo').ifixpng();
	
	$("a[rel='gallery-project']").colorbox({opacity: 0.8});
	
	$("#block h2").FontEffect({ mirror:true, mirrorColor: "#605d53",  mirrorTStart: 1, mirrorHeight: 100, mirrorOffset :-13 })
	
	$("img.reflect").reflect({ height:0.22,opacity:0.26 });

	equalHeight($("#maincontent li.col"));

		$('#photos').galleryView({
			panel_width: 765,
			overlay_height: 55,
			panel_height: 350,
			frame_width: 40,
			border: 0,
			frame_height: 40,
			background_color: '#000000'
		});


});

function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}

