﻿// namespace
window.LOV = window.LOV || {};
LOV.Sony = LOV.Sony || {};
LOV.Sony.Business = LOV.Sony.Business || {};

// shortcut
var sonyB = LOV.Sony.Business;

sonyB.Category = sonyB.Category || {};
sonyB.Category.Menu = {};

sonyB.Category.Menu.init = function() {
	$('#pmIcons a,#pmItems a').each(function (i) {
		$(this).bind('click', this.rel, sonyB.Category.Menu.open);
	});
};
$().ready(sonyB.Category.Menu.init);

sonyB.Category.Menu.open = function(e) {
	$('#categoryMenu div.menuProduto').each(function (i) { $(this).hide(); });
	$('#' + e.data).show();
	e.stopPropagation();
	$(document).bind('click', e.data, sonyB.Category.Menu.close);
};

sonyB.Category.Menu.close = function(e) {
	$(document).unbind('click');
	$('#' + e.data).hide();
};