/**
 * @author Programmer
 */
$(document).ready(function(){

	$("#all").center({
		vertical: false
	});

	// centering the element with no properties
	$(".centered:eq(0)").center();

	// centering the element with no properties
	$(".centered:eq(1)").center({
		vertical: false
	});

	// centering the element with no properties
	$(".centered:eq(2)").center({
		horizontal: false
	});

});
