function loadComparator(type, id_el)
{
	$.ajax({
	   type: "POST",
	   url: "load-comparator.php",
	   data: "type=" + type + "&id=" + id_el + "&checked=" + $('#compare' + id_el).is(':checked'),
	   success: function(data){
     	$('#comparatorBody').html(data);
			if (data == "")
				document.getElementById('comparatorDiv').style.display = 'none';
			else
			{
				document.getElementById('comparatorDiv').style.display = 'block';
				$('#comparatorBody').html(data);
			}
   	 }
	});
}

function initComparator(type)
{
	$.ajax({
		type: "POST",
		url: "load-comparator.php",
		data: "type=" + type,
		success: function(data){
			if (data == "")
				document.getElementById('comparatorDiv').style.display = 'none';
			else
			{
				document.getElementById('comparatorDiv').style.display = 'block';
				$('#comparatorBody').html(data);
			}
		}
	});

}

$(document).ready(function() {
	$("#compareButton").fancybox({
		'autoScale'			: false,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
});
