/*
	* @此插件适用与头部下拉大幅图片广告，比较简单，有问题以及意见可以联系我学习交流
	* @copyright c real life company 2011-2012
	* @author Mr.wang
	* @email wanghaojing009@yahoo.com.cn
	* @2011-09-22
	* @定义了4个参数 adlink图片的链接地址 src导入图片的路劲 speed 下拉与收回的速度 time停留时间
	* 
*/

;(function($){		
	$.fn.extend({
		"slideDownAds":function(options){
			options = $.extend({
				adlink:"",
				src:"",
				speed:2000,
				time:5000
			},options);
			var $this = $(this);
			var html = "<a target=\"_blank\" href=\""+options.adlink+"\"><img src=\""+options.src+"\" alt=\"\" /></a>";
			//$this.append(html);
		if(!$this.is(":animated")) $this.slideDown(options.speed);			
		setTimeout(function(){$this.slideUp(options.speed);},options.time);
			return this;
		}	
	})	
})(jQuery);

