$(document).ready(function(){
						   $(".fade").fadeTo("fast", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fade").hover(function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 0.3); // This should set the opacity back to 30% on mouseout
						   });
						   });

$(document).ready(function(){
						   $(".fade1").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fade1").hover(function(){
						   $(this).fadeTo("fast", 0.4); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
						   });
						   });

$(document).ready(function(){
						   $(".fade2").fadeTo("fast", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fade2").hover(function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 0.5); // This should set the opacity back to 30% on mouseout
						   });
						   });

	function icalledyou(){
	var vdomain = document.getElementById("domain").value;
	var vext = document.getElementById("ext").value;
	var iwillcall = 'http://www.w-serve.com/checkdomain/mwhois.php?domain=' + vdomain + '&ext=' + vext;
	window.open(iwillcall,'whoisoutput','width=500,height=200, left=50, top=50');
	}