	
	var $ = jQuery.noConflict();
	
	$(function(){
		
	$( "#dialog" ).dialog({
		autoOpen: false,
		hide: "explode",
		width: "auto",
		resizable: false,
		modal: true,
		close: function(event, ui) { js_ecommerce_reset_iframe_src() }
	});
	
	$( ".opener_dialog" ).click(function() {
		$( "#dialog" ).dialog( "open" );
		return false;
	});
	
	$('.button_elm').button();
	
		
	// Invio dati GET
		$('.send').click(function(){
				js_ecommerce_send_data($(this).attr('href'), $(this).attr('name'), $(this).attr('rel'));
		});
		
		$('.step').click(function() {
		  js_ecommerce_change_step($(this).html(), $(this));
		});
		
	});
	
	

