$(document).ready(function() {
    $('#globalMenu li img').hover(function(){
    	$(this).attr('src', $(this).attr('src').replace("_1","_2"));
    }, function(){
    	if ($(this).attr('id') !== 'currentPage') {
    		$(this).attr('src', $(this).attr('src').replace("_2","_1"));
    	}
    });
    
    // lightbox
    $(function() {
        $('.gallery a').lightBox();
    });
});