$(document).ready(function(){

	if ($("#content-box").length != 0)
	{
		if ($("#contact-info").length != 0)
		{
			$("#contact-info").css("height", $("#sidebar-box").css("height"));
		}
		else
		{
			$("#sidebar-box").css("height", $("#content-box").css("height"));
		}
		
	}
	
	if ($("#modules-wrapper").length != 0)
	{
		var height = $("#module").next().height();
		
		var newheight = height+40;
		
		$("#modules-wrapper").find("#module").height(newheight);
		
		
		
	}
	

/*	$(".credits").click(function(){
	
		$(this).fadeOut('slow', function(){
			$(".site-credits").fadeIn('slow');
		});
		
	});
*/	
});
