/* adding some fadein effect for the welcome text */
$(document).ready(
		function() {
			$(".welcome-text").animate({bottom: "+=20"}, 'slow');
			/*$(".welcome-text").fadeIn('slow').fadeTo(1000, 1);*/
		});
