// JavaScript Document

/*
$(document).ready(function() {


    $("a.countryLink").hover(
     	function(){
        	//alert($(this).attr('rel'))
			//document.goldBar.src = '/img/home/bars/'+$(this).attr('rel')+'.jpg';
			$("#goldBar").attr('src','/img/home/bars/'+$(this).attr('rel')+'.jpg');
		}
      , 
     revertBar()
    );
	
});
*/
function revertBar(){
	document.goldBarImg.src = '/img/home/gold-bar.jpg';
}

function showBar(country){
	document.goldBarImg.src = '/img/home/bars/'+country+'.jpg';
}
