// JavaScript Document
$(document).ready(function() {
	$('#Submit').click( function() {
		var loading;
	    var results;
	    form = document.getElementById('form');
	    loading = document.getElementById('loading');
	    results = document.getElementById('results');
		if($('#Search').val().indexOf(' ') >= 0 || $('#Search').val() == "") return false;
		$('#popup').fadeIn().css({ 'width': 750 }).prepend('<a href="#" class="close"><img src="images/close_pop.png" class="btn_close" title="X" alt="X" /></a>');
		results.style.display = 'none';
		$('#results').html('');
		loading.style.display = 'inline';
		$.post('part/process.php?domain=' + escape($('#Search').val()),{
		}, function(response){
			
			results.style.display = 'block';
			$('#results').html(unescape(response));	
			loading.style.display = 'none';
		});
	    $('body').append('<div id="fade"></div>');
		$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
	    $('a.close').click( function() {
	  	$('#fade , .popup_block').fadeOut(function() {
			$('#fade, a.close').remove();  
	    }); //fade them both out		
		return false;
	    });
		return false;
	});
});
