// JavaScript Document
$(document).ready(function() {
						 
//======================================================================
   //alert("Hello");
   
	
	
		    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
			
			
   	 	if ($("#BodyLeft").height()>$("#BodyRight").height()){
		
		$("#BodyRight").height($("#BodyLeft").height());
	} else{
		$("#BodyLeft").height($("#BodyRight").height());
		
	}
			
			
		
//======================================================================
});
