$(document).ready(function(){


    $('.webtemplate div').css('opacity', 0.4);


    $('.webtemplate').hover(function () {


		
		var el = $(this);
		
		
		el.find('div').stop().animate({width:700,height:200},'slow',function(){

			el.find('p').fadeIn('fast');
		});

	},function(){



		var el = $(this);

		el.find('p').stop(true,true).hide();
		
		el.find('div').stop().animate({width:60,height:60},'fast');

	})
});
