$(document).ready(function() {

		$('img').fadeIn();
			
			//smooth scroll			
			anchor.init();
			ancla.body();
		
});
		
anchor = {
			init : function() {
				$("a.mainpost").click(function () {
					elementClick = $(this).attr("href")
					destination = $(elementClick).offset().top;
					$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
					return false;
				})
			}
		}
ancla = {
			body : function() {
				$("a.upmain").click(function () {
					elementClick = $(this).attr("href")
					destination = $(elementClick).offset().top;
					$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
					return false;
				})
			}
		}
