$j(document).ready(function(){
	$j('#select_curr').change(function(){
		$j('#all_prices span').each(function(i){
			$j(this).hide();
		})
		$j('span#'+$j(this).val()).show();
	})
	$j('a.smallimgs').click(function(){
	  $j('a#mainimage').get(0).href = $j(this).get(0).href;
	  $j('a#mainimage img').get(0).src = $j('img', $j(this)).get(0).src.replace('w=92;h=74;', 'w=298;h=229;');
	  return false;
	})
}) 

