var jCurA;

function setSelected(jNewA){
	if (jCurA){
		jCurA.css({'color': '#000', 'font-weight': 'normal'});
	}
	jCurA = jNewA; 
	jNewA.css({'color': '#326901', 'font-weight': 'bold'});
}

$(document).ready(function(){
	$("img[@src$='.png']").ifixpng(); 
	$('ul.galleryNav a').click(function(){ 
		var section = $(this).parent().parent().attr('id').split('_')[1]; 
		var imgId = $(this).attr('id').split('_')[1];
		$('#currentImage').attr('src','../img/'+section+'/'+imgId+'.png').ifixpng();
		setSelected($(this));
		return false;
	});
});
