/**
 * Created by JetBrains PhpStorm.
 * User: Brewing
 * Date: 10.05.11
 * Time: 12:42
 * To change this template use File | Settings | File Templates.
 */
function centerContent(container, heightParam){
	jQuery(window).bind('resize',function(){
		var height = jQuery(this).height();
		var newmargin = ((height-heightParam)/2);
		if(newmargin <= 0){
			newmargin = 0;
		}

		jQuery(container).css('margin-top',newmargin);
	});

	jQuery(function(){
		jQuery(window).trigger('resize');
	});
}

