if(!window.console) {
 window.console = {
 	log: function() {
 		alert(arguments[0]);	
 	}	
 }	
}

$(function() { 
  g2.url();
});

g2 = {
		url: function(){
			$('#thumbs a').click(function() {
					$('#thumbs a').each(function(){
						$(this).children('img').removeClass('hltd_swap');
						});
					$(this).children('img').addClass('hltd_swap');
					g2.imageChange(this);
					return false;
				});			
		},

		imageChange: function(el) {
			var thumb = $(el).attr("href");
			$('#imageLarge').attr("src", thumb);
			}

	}