jQuery(function($) {

	$('#locations #locationPickerPanel ol li').first().addClass('selected');
	$('#locations #locationPickerPanel ol li a').click(function(){
		if( !$(this).parents('li').hasClass('selected') ){
			$('#locations #locationPickerPanel ol li').removeClass('selected');
			$(this).parents('li').addClass('selected');
			var target = $(this).attr('href');
			$('#locations #locationDetailPanel .location').hide();
			$('#locations #locationDetailPanel .location#'+target).show().css({'left': '600px'}).animate({'left': 0});
			if( $('#locations #locationDetailPanel .location#'+target).find('iframe').attr('src') == '#' ){
				var iframe = $('#locations #locationDetailPanel .location#'+target).find('iframe');
				iframe.attr('src',iframe.attr('rel'));
			}
		}
		
		return false;
	});
	$('#locations #locationDetailPanel .location').hide().first().show();
	var iframe = $('#locations #locationDetailPanel .location').first().find('iframe');
	iframe.attr('src',iframe.attr('rel'));

	
	
	// slides
	$('#intro .holder').css('background-image','none');
	$("#slides").slides({
		play: 5000,
		slideSpeed: 1000,
		effect: 'fade'
	});

});
