/*
 * Classe di gestione condcomm v1.0.0
 */

function condcomm(id,section,type)
{
	this.id=id;
	this.section=section;
	this.type=type;
	
	components.addItem(this); //aggiungo il controllo alla classe di gestrione della pagina
	
	this.reload=reload;
	
	function reload(){	
		$("#" + this.id + "_Body").load("ajax.php?component=quickcart&reload=1&id=" + this.id);
	}
}

$(document).ready(function(){
    $("#link_condcomm").fancybox({
        'autoDimensions' : false,
        'height' : 450,
        'width' : 900
    }); 
});
