
$(document).ready(function() {
	$('#push img:not(.ribbon)').hide();
	$('.contact').click(function() {
	    var targetOffset = $('#message-email').offset().top;
	    $('html,body').animate({scrollTop: targetOffset}, 500, 'easeInOutExpo', function(){
		    $('#message-email').focus();
	    });    
	    return false;
	});
});
$(window).load(function() {
	$('#push img:not(.ribbon)').fadeIn('slow');
});
