(function($){
	$.fn.Zoomer=function(b){
		var c=$.extend({
			speedView:200,
			speedRemove:200
		},b);
		var d=$.extend(c,b);
		$(this).hover(function() {
			$(this).css({'z-index':'10'});
			$(this).find('.contentarticle').addClass("hover").stop().animate({
				marginTop:'-9',
				marginLeft:'-19',
				top:'0',
				left:'0',
				width:'245px',
				height:'125px',
				padding:'6px'
			},
			d.speedView);
			$('.contentarticle',this).find('.date').addClass("hover").css({
				'margin-bottom' : '6px',
				'margin-right' : '6px'}
			);
		},function(){
			$(this).css({'z-index':'0'});
			$(this).find('.contentarticle').removeClass("hover").stop().animate({
				marginTop:'0',
				marginLeft:'0',
				top:'0',
				left:'0',
				width:'215px',
				height:'115px',
				padding:'2px'
			},d.speedRemove);
			$('.contentarticle',this).find('.date').addClass("hover").css({
				'margin-bottom' : '2px',
				'margin-right' : '2px'}
			);
			$(this).find('.title').remove()
		})
	}
})(jQuery);
