$(document).ready(function()
{
	initNavs();
	objModuleController.initModules();
	
	//WholeSale
	$('#wholesale-button').hover(
			function() {
				$('img', this).attr('src', $('img', this).attr('src').replace(/\.png/, '-active.png'));
			},
			function() {
				$('img', this).attr('src', $('img', this).attr('src').replace(/-active\.png/, '.png'));
			}
	);
});

function initMain()
{
	objMessageSystem = new MessageSystemObject();
}

function disableButton(in_objButton)
{
	in_objButton.unbind('click');
	in_objButton.removeClass('btn-text-normal');
	in_objButton.addClass('btn-text-disabled');
	in_objButton.blur();
}

function openRawWindow(in_strUrl)
{
	window.open(in_strUrl + '?mode=raw', 'info', 'scrollbars=yes,width=871,height=600');
	return false;
}
