
var uu = {};
uu.getSkuData = function(sKey, iSkuId, sKey2, iVal2) {
	for(iIndex in aSKUMatrix) {
		var oSkuData = aSKUMatrix[iIndex];
		if (oSkuData[sKey] == iSkuId) {
			if (typeof sKey2 != 'undefined') {
				if (oSkuData[sKey2] == iVal2) {
					return oSkuData;
				}
			} else {
				return oSkuData;
			}
		};
	};
	return {};
};
uu.showElement = function(oElement, sSpeed) {
	oElement.css('display', 'block');
// 	oElement.fadeIn(sSpeed);
};
uu.hideElement = function(oElement, sSpeed, fCallback) {
	oElement.css('display', 'none');
	fCallback();
// 	oElement.fadeOut(sSpeed, fCallback);
};


jQuery.noConflict();
jQuery(document).ready(function($){

	$('.helpLink a').click(function() {
		var sId = $(this).attr('rel') + '-help';
		$('#' + sId).show();
		return false;
	});

	$('.helpInline a.close').click(function() {
		$(this).parent().hide();
		return false;
	});
	
		/**
	 * Page Jump select
	 */
	$('#page-jump-select').change(function() {
		window.location = $(this).val();
	});

});

