(function($){


	$('a.details_link').click(function() {
		$('a.currentLink').removeClass('currentLink');				
		$('div.detailsCurrent').removeClass('detailsCurrent').hide();
		$('a#' + this.id).addClass('currentLink');
		$('div#' + this.id.replace('_link', '')).addClass('detailsCurrent').fadeIn();
		return false;
	});

})(this.jQuery);




// window.log = function(){
//   log.history = log.history || [];   
//   log.history.push(arguments);
//   if(this.console){
//     console.log( Array.prototype.slice.call(arguments) );
//   }
// };
// (function(doc){
//   var write = doc.write;
//   doc.write = function(q){ 
//     log('document.write(): ',arguments); 
//     if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
//   };
// })(document);
	
