$(document).ready(function()
{
	$(".col1").hover(function(){
		$(this).css("width","420px");
	},function(){
		$(this).css("width","130px");
	});
});