$(document).ready(function(){	
	// Setup facebox
	$('a[rel*=facebox]').fancybox();
	
	var links	= "#links";
	$(links).css("display", "none");
	
	// Open search
	$('a#showlinks').click(function()
			{
				$(links).slideToggle();
			}
		);
	
	// Setup tooltips
	$(".tooltips").tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		extraClass: "bubble",
		fixPNG: true, 
		top: 0, 
		left: 10 
	});
	
	$('#slideshow1').cycle();
}); // End jquery document ready						   
