$j(document).ready(function(){
	$j('#currency').change(function(){
		$j('#all_prices span').each(function(i){
			$j(this).hide();
		})
		$j('span#gross_'+$j(this).val()).show();
	})
	$j('a.hlc_more_gallery').lightBox();
}) 

