
		var jQueryScriptOutputted = false;
		var sliderIntervalId = 0;
		var sliderHeight = 0;
		var sliderWidth = 0;
		var prQuery;
		var sliding = false;
		var slideSpeed = 10;
		var height = '122';
		var width = '100%';
		var bgColor = '##06F';
		var widgetWrapper;
		function prCreateWidget(){
			c = prReadCookie('prHideSliderpr664');
			widgetWrapper = document.createElement('div');
			widgetWrapper.id = 'prSliderpr664';
			widgetWrapper.setAttribute('style',"font-family:Tahoma,Geneva,sans-serif;font-size:12px;height:122px;left:0;position:fixed;opacity:0;overflow:hidden;right:0;width:auto;z-index:2147483647;bottom:-122px;");
			widget = document.createElement('div');
			widget.id = 'prSliderWidgetpr664';
			widget.setAttribute('style',"height:102px;width:100%;");
			lShad = document.createElement('div');
			rShad = document.createElement('div');
			shad = document.createElement('div');
			iframeWrapper = document.createElement('div');
			lShad.setAttribute('style',"background-image:url('//static.plugrush.com/img/slider/colors/lightgrey.png');background-position:9px top;background-repeat:no-repeat;display:inline-block;float:left;height:109px;margin-top:13px;width:25px;");
			rShad.setAttribute('style',"background-image:url('//static.plugrush.com/img/slider/colors/lightgrey.png');background-position:-18px top;background-repeat:no-repeat;display:inline-block;float:right;height:109px;margin-top:13px;width:25px;");
			shad.setAttribute('style',"height:7px;margin-top:13px;;");
			iframeWrapper.setAttribute('style',"background-image:url('//static.plugrush.com/img/slider/colors/lightgrey.png');background-position:0 -312px;background-repeat:repeat-x;height:102px;margin:0 25px;margin-top:13px;padding-top:7px;");
			closeLink = document.createElement('a');
			closeLink.setAttribute('style',"background-image:url('//static.plugrush.com/img/slider/close_btn.png');background-repeat:no-repeat;color:#FFF;cursor:pointer;display:inline-block;font-weight:bold;height:28px;position:absolute;right:2px;text-decoration:none;width:28px;top:6px;");
			closeLink.innerHTML = ' ';
			closeLink.id = 'prCloseLinkpr664';
			showLink = document.createElement('a');
			showLink.id = 'prShowLinkpr664';
			jQuery(showLink).click(function(){prToggle();});
			if(c){
				showLink.setAttribute('style',"background-image:url('//static.plugrush.com/img/slider/show_bottom.png');background-repeat:no-repeat;cursor:pointer;display:inline-block;height:28px;position:fixed;right:4px;text-decoration:none;width:28px;z-index:2147483647;bottom:4px;");
			}else{
				showLink.setAttribute('style',"background-image:url('//static.plugrush.com/img/slider/show_bottom.png');background-repeat:no-repeat;cursor:pointer;display:inline-block;height:28px;position:fixed;right:4px;text-decoration:none;width:28px;z-index:2147483647;bottom:-28px;");
			}
			jQuery(closeLink).click(function(){prToggle();});
			iframe = document.createElement('iframe');
			iframe.height = 102;
			iframe.setAttribute('allowtransparency',1);
			iframe.setAttribute('frameborder',0);
			iframe.setAttribute('scrolling','no');
			iframe.src = '//w1.plugrush.com/pornvideotv.net/f1j';
			iframe.width = '100%';
			widget.appendChild(iframe);
			iframeWrapper.appendChild(widget);
			widgetWrapper.appendChild(lShad);
			widgetWrapper.appendChild(rShad);
			widgetWrapper.appendChild(iframeWrapper);
			widgetWrapper.appendChild(closeLink);
			
			document.body.appendChild(widgetWrapper);
			document.body.appendChild(showLink);
			if(c){
			//	jQuery('#prShowLinkpr664').animate({bottom:4},500,'easeInCirc');
			}else{
				prSlide(0);
			}
		} 	
		function prTheSlider(){
			var script = document.createElement('script');
			script.setAttribute('src','//code.jquery.com/jquery-1.9.1.min.js');
			script.setAttribute('type','text/javascript');
			document.getElementsByTagName('head')[0].appendChild(script);
			window.setTimeout(function() { prGo(); }, 2000);
		}
		function prGo(){
			prQuery = jQuery.noConflict();
			prQuery.getScript('//code.jquery.com/ui/1.10.0/jquery-ui.min.js').done(function(){
				prCreateWidget();
				return true;
			});
		}
		function prToggle(){
			opacity = jQuery('#prSliderpr664').css('opacity');
			if(opacity==1){
				jQuery('#prSliderpr664').animate({opacity:0,bottom:'-122'},500,'easeInCirc',function(){jQuery('#prShowLinkpr664').animate({bottom:4},500,'easeOutCirc')});
				prCreateCookie('prHideSliderpr664',1,1);
			}
			if(opacity==0){
				jQuery('#prSliderpr664').animate({opacity: 1,bottom:0},500,'easeOutCirc');
				jQuery('#prShowLinkpr664').animate({bottom:-28},500,'easeInCirc');
				prDeleteCookie('prHideSliderpr664');
			}
		}
		function prSlide(delay){
			jQuery('#prSliderpr664').delay(delay).animate({opacity:1,bottom:0},500,'easeOutCirc');
		}
		function prCreateCookie(name,value,days){
			if(days){
				var date = new Date();
				date.setTime(date.getTime()+(days*24*60*60*1000));
				var expires = "; expires="+date.toGMTString();
			}else{
				var expires = "";
			}
			document.cookie = name+"="+value+expires+"; path=/";
		}
		function prReadCookie(name){
			var nameEQ = name+"=";
			var ca = document.cookie.split(';');
			for(var i=0;i < ca.length;i++){
				var c = ca[i];
				while(c.charAt(0)==' '){
					c = c.substring(1,c.length);
				}
				if(c.indexOf(nameEQ)==0){
					return c.substring(nameEQ.length,c.length);
				}
			}
			return null;
		}
		function prDeleteCookie(name){
			prCreateCookie(name,'',-1);
		}		
		prTheSlider();