$(document).ready(function()
{
	$("div#vertical_menu a:last").css({display: 'none'});
	
	$('div#header_title').cycle(
	{
		speed:		2000,	// speed of the transition (any valid fx speed value) 
		timeout:	1000,	// milliseconds between slide transitions (0 to disable auto advance)
		continuous:	0,		// true to start next transition immediately after current one completes 
		fx: 		'fade'	// choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

	$(function()
	{
		$('a[rel=lightbox]').lightBox();
	});

});

