function showArtist (a) {
	$.fancybox({
		'autoScale'		: false,
		'titleShow'		: false,
		'type'			: 'iframe',
		'href'			: './clients/'+a,
		'padding'		: 0,
		'scrolling'		: 'no',
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'		: 500,
		'speedOut'		: 500,
		'width'			: 800,
		'height'		: 605,
		'overlayColor'	: '#000',
		'onClosed'		: function() {
			location.hash = '!/home';
		}
	});
}

$(document).ready(function(){
	// $("#clients-puzzle tr td.border a").hover(function(){
	// 	console.log("hovered");
	// });
	$("table#clients-puzzle tr td.border a").live('mouseenter', function(){
		$(this).animate({
			borderTopColor: '#4D90FE',
			borderRightColor: '#4D90FE',
			borderBottomColor: '#4D90FE',
			borderLeftColor: '#4D90FE',
		}, 500);
	});
	
	$("table#clients-puzzle tr td.border a").live('mouseleave', function(){
		$(this).animate({
			borderTopColor: '#fff',
			borderRightColor: '#fff',
			borderBottomColor: '#fff',
			borderLeftColor: '#fff',
		}, 500);
	});
	
	$("div#records-content > div#nav > div > a").live('mouseenter', function(){
		$(this).animate({
			borderTopColor: '#4D90FE',
			borderRightColor: '#4D90FE',
			borderBottomColor: '#4D90FE',
			borderLeftColor: '#4D90FE',
		}, 500);
	});
	
	$("div#records-content > div#nav > div > a").live('mouseleave', function(){
		$(this).animate({
			borderTopColor: '#fff',
			borderRightColor: '#fff',
			borderBottomColor: '#fff',
			borderLeftColor: '#fff',
		}, 500);
	});

});
