function HideResultsModalBox() {
		setTimeout(function() { 
			$('#result').fadeOut('slow');
			$('.window').fadeOut('slow');
			$('#mask').fadeOut('slow');
			$('#loading').hide();
		},4000);
}
		
function AddProductComparison(url_data,code) {
$(document).ready(function() { 

		
					$.ajax({
						type: 'GET',
						url: url_data,
						data: { product_code: code },
						beforeSend: function() {
							$('#loading').show();
							$('#result').hide();
						},
						cache: false,
						success: function(data) {
							$('#result').html(data).show('fast');
							HideResultsModalBox();
						}
					});
					return false;


}); // end document 
}

function DeleteComparison(url_data,code) {
$(document).ready(function() { 

		
					$.ajax({
						type: 'GET',
						url: url_data,
						data: { s: code },
						beforeSend: function() {
							$('#loading').show();
							$('#result').hide();
						},
						cache: false,
						success: function(data) {
							$('#result').html(data).show('fast');
							HideResultsModalBox();
						}
					});
					return false;


}); // end document 
}

		




