jQuery.fn.imgresize = function(options) 
{
  var settings = {
	  widthUp: 100,
	  widthDown: 100,
	  heightUp: 100,
	  heightDown: 100,
	  speeadUp: 500,
	  speeadDown: 200
  };
  settings = jQuery.extend(settings, options);
  return this.mouseover(
	function () 
	{
		$("#"+$(this).attr("id")+"").stop().animate
		({ width: settings.widthUp+ 'px',  height: settings.heightUp+ 'px'	}, settings.speeadUp ); 
	}).mouseout(function () 
	{
		$("#"+$(this).attr("id")+"").stop().animate(
		{width: settings.widthDown+ 'px' ,  height: settings.heightDown+ 'px' }, settings.speeadDown );
	});
};

jQuery.fn.imgresize21 = function(options) 
{
  var settings = {
	  widthUp: 100,
	  widthDown: 100,
	  heightUp: 100,
	  heightDown: 100,
	  speeadUp: 500,
	  speeadDown: 200
  };
  settings = jQuery.extend(settings, options);
  return this.mouseover(
	function () 
	{
		$("#img1").stop().animate
		({ width: settings.widthUp+ 'px',  height: settings.heightUp+ 'px'	}, settings.speeadUp ); 
	}).mouseout(function () 
	{
		$("#img1").stop().animate(
		{width: settings.widthDown+ 'px' ,  height: settings.heightDown+ 'px' }, settings.speeadDown );
	});
};

jQuery.fn.imgresize22 = function(options) 
{
  var settings = {
	  widthUp: 100,
	  widthDown: 100,
	  heightUp: 100,
	  heightDown: 100,
	  speeadUp: 500,
	  speeadDown: 200
  };
  settings = jQuery.extend(settings, options);
  return this.mouseover(
	function () 
	{
		$("#img2").stop().animate
		({ width: settings.widthUp+ 'px',  height: settings.heightUp+ 'px'	}, settings.speeadUp ); 
	}).mouseout(function () 
	{
		$("#img2").stop().animate(
		{width: settings.widthDown+ 'px' ,  height: settings.heightDown+ 'px' }, settings.speeadDown );
	});
};

jQuery.fn.imgresize23 = function(options) 
{
  var settings = {
	  widthUp: 100,
	  widthDown: 100,
	  heightUp: 100,
	  heightDown: 100,
	  speeadUp: 500,
	  speeadDown: 200
  };
  settings = jQuery.extend(settings, options);
  return this.mouseover(
	function () 
	{
		$("#img3").stop().animate
		({ width: settings.widthUp+ 'px',  height: settings.heightUp+ 'px'	}, settings.speeadUp ); 
	}).mouseout(function () 
	{
		$("#img3").stop().animate(
		{width: settings.widthDown+ 'px' ,  height: settings.heightDown+ 'px' }, settings.speeadDown );
	});
};



