/*
 * jQuery JavaScript Userfunction v1.0.0
 * http://typo4you.de/
 *
 * Copyright (c) 2009 Bernd Singer
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2010-01-17 12:36:25
 */

$(document).ready(function(){ 
	$(document).pngFix();

	//Left column fix
	if(($('#left').height() + 250) >= $('#content').height()) {
		$('#content').height(($('#left').height()+250));
	}
});

