$(document).ready(function() {
	$(".info_button").bind("click", function() {
		var id = $(this).attr("id").replace('info_button_', 'info_window_');
		
		$("#"+ id).dialog({
      resizable: false,
      draggable: false,
      height: 425,
      width: 475,
      modal: true,
      zIndex: 99999999,
      buttons: {
    		'Direct bestellen': function() {
        	$(this).dialog('close');
        	
        	window.location.href = '/shop/product.php?p=657&l=1&pid='+ id.replace('info_window_', '') +'&product='+$("#"+ id).attr('title');
    		}
      }
    });
		
		return false;
	});
});
