/* 
 *
 * Jovi common functions
 *
 * Requires: jQuery 1.2+, dimensions plugin
 *
 */

function adjustFooter(){
	
	var windowHeight	= jQuery(window).height();
	var posTopFooter	= jQuery('.cont_footer').offset().top;
	
	jQuery('.cont_footer').height(windowHeight-(posTopFooter));
	
}