// JavaScript Document
$(document).ready(function() {
//============================================						   
//alert("I am stuck inside a computer");

var LargestSection;

if ($("#InsideFloatLeft").height()>$("#InsideFloatRight").height()){
	if ($("#OutsideFloatRight").height()<$("#InsideFloatLeft").height()){
		$("#OutsideFloatRight").height($("#InsideFloatLeft").height());
		//alert("First");
	} else{//alert("Third");
	}
	
} else if($("#InsideFloatLeft").height()<$("#InsideFloatRight").height()){
	if ($("#OutsideFloatRight").height()<$("#InsideFloatRight").height()){
		$("#OutsideFloatRight").height($("#InsideFloatRight").height());
		//alert("Second");
	} else{//alert("Forth");
	}
	
}




$("a.Gallery").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 

});





