var images = [];

$(document).ready (function ()  {
	

});


function showProducts(id){
 for (i = 0; i < images.length; i++)
		{
				alert(images[i].target);
		}
	
 
}

function show_error(error, id, width, drop){

  $('body').prepend('<div id="error"></div><div id="blackout" class="black_overlay" />');

  $('#error').show();

  $.get ('/ajax/getProducts.php', {product_id: id, width: width, drop: drop }, function (data) {
						
		$('#error').html(data);

  
	});

}
