$(document).ready(function() {
	$('a#showVideos').click(function() {
		$('#videos').toggle('slow');
		return false;
	});
});