
		var browserName = navigator.appName;
		var browserVer = parseInt(navigator.appVersion);
		var version = "";
		var msie4 = (browserName == "Microsoft Internet Explorer" && browserVer >= 4);
		if ((browserName == "Netscape" && browserVer >= 3) || msie4 || browserName=="Konqueror" || browserName=="Opera") {version = "n3";} else {version = "n2";}
			// Blurring links:
		function blurLink(theObject)	{	//
			if (msie4)	{theObject.blur();}
		}
		
                           $(document).ready(function(){ 
                                    
                                    	// select #flowplanes and make it scrollable. use circular and navigator plugins
                                  	//$("#pview").scrollable({ circular: true, mousewheel: true}).navigator().autoscroll({ interval: 7000 });
                                   $("#pview").scrollable({size: 5, clickable: false}).circular().autoscroll({interval: 7000, autoplay: true, step: 2})
                                    
                                    
                           });

