$(document).ready(function() 
	{
		/*$('#homeImageContainer').cycle({ 
			fx:     'scrollUp', 
			timeout: 6000, 
			delay:  -2000
		});*/
		//console.log($('#content').height());
		//console.log($('#sidebarHome').height());
		var maxHeight = Math.max($('#content').height(), $('#sidebarHome').height())
		
		//console.log(maxHeight);
		$('#content').height(maxHeight);
		$('#sidebarHome').height(maxHeight);
		if ($('#containerMenuSec') != null){
			$('#containerMenuSec').height(maxHeight);
		}
		
	}
);

