function getStats(fName){
	fullName = fName;
	shortName = fullName.match(/[^\/\\]+$/);
	document.forms.cvform.dispName.value = shortName
}

jQuery(document).ready(function() {
	jQuery('#carrousel').jcarousel({
		wrap: 'circular',
		auto: 3,
		visible: 1,
		scroll: 1
	});
});
jQuery(document).ready(function() {
	$("a.fancy").fancybox({
		'overlayShow'	: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
});

