﻿$(document).ready(function() {
	$("#shadow").css("height", $(document).height()).hide();
}); 

function OpenSelectProductItem(sender, id) {
	if (!id) {
		id = '';
	}
	var popupButton = $(sender);
	var popupDiv = $('#selectProductItem' + id);

	var buttonOffset = popupButton.position();
	var buttonWidth = popupButton.outerWidth();

	popupDiv.css('left', buttonOffset.left - (popupDiv.width() - buttonWidth))
				.css('top', buttonOffset.top)
				.show();
	popupDiv.attr('sender', popupButton.attr('id'));
	
	$("#shadow").show();
}

function CloseSelectProductItem(id) {
	if (!id) {
		id = '';
	}
	if ($('#selectProductItem' + id).length > 0) {
		$('#selectProductItem' + id).fadeOut('medium');
	}
	else {
		$('#selectProductItem').fadeOut('medium');
	}

	$("#shadow").hide();
}