$.fn.center = function( options ) {
	$( this ).css( 'position', 'absolute' );

	var width = $( this ).width();
	var height = $( this ).height();

	$( this ).css( 'margin-left', ( ( width / 2 ) * -1 ) + 'px' );
	$( this ).css( 'margin-top', ( ( height / 2 ) * -1 ) + 'px' );
	$( this ).css( 'left', '50%' );
	$( this ).css( 'top', '50%' );
	$( this ).css( 'width', width + 'px' );
	$( this ).css( 'height', height + 'px' );
}
