jQuery.fn.fullheight = function ( min_height ) {
	
	return this.each( function () {
		
		jQuery(this).css( {
			  
			height: ( jQuery(window).height() > min_height ? jQuery(window).height() : min_height ) + 'px'

		} );
		
		
	} );

};