jQuery(document).ready(function(){
	jQuery('#compatible-img img').mouseover(function(){
		jQuery(this).animate({
			width: '45px',
			height: '93px'
		},200);
		jQuery('#compatible-info').html(jQuery(this).attr('alt'));
	}).mouseout(function(){
		jQuery(this).animate({
			width: '40px',
			height: '83px'			
		},200)
	})
})
