$(document).ready(function(){

    function init() {
    var str;
    $("a.compare").click(function(e)
		{str = '';
		
			$('.product_comp').each(function (e){
			if (this.checked)	{str += this.value+" ";}	
			});
		
		
		if ( str == '' )		
		{	
		alert('Вы не выбрали ни одного товара!');
		return false;}
		else {		
		document.getElementById("comparison").value = str;
		document.getElementById("form").submit();
		}
		});
    }

    $(function(){
        init();
    });
					
});
	
	
	
	
	
	
	
	
	
	
	
	