/*
 * Url preview script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */
 
this.screenshotPreview = function(){	

	$("a.screenshot1").hover(function(e){$("#contentAreaForms").fadeOut("fast");},function(){$("#contentAreaForms").fadeIn("fast");});
	$("a.screenshot2").hover(function(e){$("#contentAreaForms").fadeOut("fast");},function(){$("#contentAreaForms").fadeIn("fast");});
	$("a.screenshot3").hover(function(e){$("#contentAreaForms").fadeOut("fast");},function(){$("#contentAreaForms").fadeIn("fast");});
	$("a.screenshot4").hover(function(e){$("#contentAreaForms").fadeOut("fast");},function(){$("#contentAreaForms").fadeIn("fast");});
	$("a.screenshot5").hover(function(e){$("#contentAreaForms").fadeOut("fast");},function(){$("#contentAreaForms").fadeIn("fast");});
	$("a.screenshot6").hover(function(e){$("#contentAreaForms").fadeOut("fast");},function(){$("#contentAreaForms").fadeIn("fast");});
	$("a.screenshot7").hover(function(e){$("#contentAreaForms").fadeOut("fast");},function(){$("#contentAreaForms").fadeIn("fast");});

	$("a.screenshot1").hover(function(e){$("#screenshot1").fadeIn("fast");},function(){$("#screenshot1").fadeOut("fast");});
	$("a.screenshot2").hover(function(e){$("#screenshot2").fadeIn("fast");},function(){$("#screenshot2").fadeOut("fast");});	
	$("a.screenshot3").hover(function(e){$("#screenshot3").fadeIn("fast");},function(){$("#screenshot3").fadeOut("fast");});
	$("a.screenshot4").hover(function(e){$("#screenshot4").fadeIn("fast");},function(){$("#screenshot4").fadeOut("fast");});
	$("a.screenshot5").hover(function(e){$("#screenshot5").fadeIn("fast");},function(){$("#screenshot5").fadeOut("fast");});
	$("a.screenshot6").hover(function(e){$("#screenshot6").fadeIn("fast");},function(){$("#screenshot6").fadeOut("fast");});
	$("a.screenshot7").hover(function(e){$("#screenshot7").fadeIn("fast");},function(){$("#screenshot7").fadeOut("fast");});	
		
};


// starting the script on page load
$(document).ready(function(){
	screenshotPreview();
});