/*
 * 
 * powered by jQuery (http://www.jquery.com)
 * 
 */
 
this.screenshotPreview = function(){	
		
	/* END CONFIG */
	$("a.screenshot").hover(function(e){
	
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
	    $(".widthmaximage").attr("src", "img/sites/"+this.rel+".gif");		
;},
	function(){
		this.title = this.t;	
		$(".widthmaximage").attr("src", "img/btslogo.gif");

    });			
};

// starting the script on page load
$(document).ready(function(){
	screenshotPreview();
});
