// JavaScript Document

$(document).ready(function() {
	$("img[id*='icon']").mouseenter(function() {
		$(this).animate({width:"78px", height:"78px"}, 200);

	}).mouseleave(function() {
		$(this).animate({width:"50px", height:"50px"}, 200);
	});
});

