$(document).ready(function() {
	
	// hides the slickbox as soon as the DOM is ready
	// (a little sooner than page load)
	$('#moreCurrencies').hide();
	
	// shows the slickbox on clicking the noted link  
	$('a#showCurrencies').click(function() {
		$('#moreCurrencies').show('slow');
		return false;
	});
	
	// log print action to DB
	// open print dialog
	$('a#printProduct').click(function() {
		UserActionLog.logPrintProduct(nProductID);
		window.print();
		return false;
	});

});
