	$(document).ready(function(){
		$(".dialog-action").click(function(){
			var iHeight	= 400
			var iWidth	= 250

			//clear out dialog box
			$("div.dialog-message div.message-content").html('');

			//add in the title of the dialog box
			$("div.dialog-message").attr({title : $(this).attr("title")});


			//open dialog
			//remove from dom if we are deleting
			if ( $(this).attr("name") == 'delete' || $(this).attr("name") == 'add' ) {
				iHeight	= 150
				iWidth	= 350
			}

			$("#dialog").dialog({ resizable: true, height: iHeight, minHeight: 125, minWidth: iWidth, width: 400, showResizable: true, stack: false, modal: true, overlay: { opacity: 0.5, background: "black" } });
			
			$("div.dialog-message div.message-content").show();

			//show loader
			$("div.dialog-message div.loader").show();

			//send action request
			$.get($(this).attr("href"), 
			  function(data){
					$("div.dialog-message div.loader").hide();
					$("div.message-content").html(data);
			});

			//remove from dom if we are deleting
			if ( $(this).attr("name") == 'delete') {
				$(this).parent().parents("div.product-listings").hide();
			}

			return false;
		});
	});