jQuery(document).ready(function(){	nums = 5;	screenshotPreview();});function screenshotPreview() {		for(var i=1; i<=nums; i++){		jQuery("#nav"+i).hover(function(e){			//jQuery(this).find("span.balloon").show();			if(jQuery.browser.msie){				jQuery(this).find("span.balloon").show();			}else{				jQuery(this).find("span.balloon").fadeIn("fast");			}		},function(){			//jQuery(this).find("span.balloon").hide();			if(jQuery.browser.msie){				jQuery(this).find("span.balloon").hide();			}else{				jQuery(this).find("span.balloon").fadeOut("fast");			}		});	}};

