$(document).ready( function() {

	//support email
	{	
		var s = "support" + "@" + "sourceremoting.com";
	
		$("a#support").attr("href", "mail" + "to:" + s).html(s);
	}
	
	//events
	$("a.tab").click(function(e) {
		$("div.tab").hide();
		$("div#" + e.target.id).show();
   });
	
	//screenshots
	$("a.screenshots").fancybox({
		"cyclic": true
	});
});


