// JavaScript Document

$(document).ready(function() {
	
	
	$('.splash-anim1a')
		.mouseover(function(){
			$(this).stop().animate({marginTop: '-206px'}, 280);
			// For previous design, its 245px
		})
		.mouseout(function(){
			$(this).stop().animate({marginTop: '0px'}, 180);
		});
	});

