// JavaScript Document
$(document).ready(function() {
$('.footer_inner1 img').hover(function() {
		$(this).animate({  top :'10px'}, {queue:false, duration:500}).fadeTo(100, 0.7);							  
					}, function() {
			$('.footer_inner1 img').animate({top: '20px'},{queue:false, duration:500}).fadeTo(200, 1.0);
									   
						   });
						   
						   });


