$(function(){ common.start(); });


var common = {
	start: function(){
		$('img[class="entry-icons"]').hover(
			function(){
				$(this).css({
					opacity:0.8,
					border: 'solid 1px red'
				});
			},
			function(){
				$(this).css({
					opacity: 1.0,
					border: 'solid 1px #549650'
				});
			}
		
		);

	}







};