$(document).ready(function() {
	$("a.fb").fancybox();
	
	$('input').click(function(){ $(this).attr({ value: '' }); });
	
	$('#top').supersleight();
	$('#header').supersleight();
	$('#headerSub').supersleight();
	$('#highlights').supersleight();
	$('#wrapperSub').supersleight();
	
	initMenu();
	
	$('#project').cycle({timeout: 7000, speed: 900, delay: 1000, random: 1, before: onBefore});	
});

function onBefore(){
	$('#title').html(this.alt);
}

function initMenu() {
	$('#subNav ul').hide();
	$('#subNav li a').click(
		function() {
			$(this).next().slideToggle('normal');			
			$(this).parent().toggleClass("selected");
		}
	);
	
	$('#locations ul').hide();
	$('#locations li a').click(
		function() {
			$(this).next().slideToggle('normal');			
			$(this).parent().toggleClass("selected");
		}
	);
}
