function CloseHomeAd(){

	this.init = function(){
		(function($){
			if ($('#rsWrapper')) {
				window.setTimeout("closeHomeAd.Close()", 5000);
			}
			
		})(jQuery);
	}
	
	this.Close = function(){
		(function($){
			if ($('#rsWrapper')) {
				$("div#rsWrapper").fadeOut();
			}
			
		})(jQuery);
	}
	
	var self = this;
	
}
	
var closeHomeAd = new CloseHomeAd();

(function($) {
	$(document).ready(function(){
		closeHomeAd.init();
	});

})(jQuery);
