$(document).ready(function() {
	$('a[rel*=facebox]').facebox();

	window.setTimeout(function() {
		$('.skype_pnh_container').html('');
		$('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
	}, 800);

	$('.customscroll').jScrollPane({
		showArrows: true,
		dragMinHeight: 15,
		scrollbarWidth: 15
	});

	$('.showborder').live('mouseover', function(){
		$('.legend', this).show();
		$('img', this).addClass('yellowborder');
	}).live('mouseout', function(){
		$('.legend', this).hide();
		$('img', this).removeClass('yellowborder');
	});
});

