$(document).ready(function(){
	// homepage backgroud horizontal position
	$('#page-home-bg').css('left', ($(window).width()/2 - 509) + "px");
	
	// horizontal position of footer claim
	var pos =  $('body').width()/2-488;
	$('body').css('background-position', pos+'px bottom');


	/* Homepage background slider */
	var slider_index = 1;
	var slider_images = 3;
	var slider_interval = 5000;

	function switch_background() {
		$('#page-home-bg').fadeOut(function() { $('#page-home-bg').attr('class', '').addClass('img0'+slider_index).fadeIn(); });
		$('.home-pagination li').removeClass('selected').eq(slider_index-1).addClass('selected');
	}

	$('.home-pagination a').click(function() {
		if(slider_index != $(this).parent().index()+1) {
			slider_index = $(this).parent().index()+1;
			switch_background();
		}
		return false;
	});

	setInterval(function() { 
			slider_index++;
			if(slider_index > slider_images)
				slider_index = 1;

			switch_background();
		}, 
		slider_interval);


	/* Homepage news toggle */
	$('.box-news h3 a').click(function() {
		var item = $(this).closest('li');

		if(!item.hasClass('selected')) {
			item.parent().find('.selected').removeClass('selected').find('p').slideUp();
			item.addClass('selected').find('p').slideDown();
		}

		return false;
	});
	/* Hide news on homepage */
	$('.box-news li:gt(0) p').hide();
	$('.box-news li:eq(0)').addClass('selected');

	/* The World Wide map reacts to the "hover" event of nearby list of states  */
	$('.menu-map a').mouseover(function() {
		$('ul.map li[class^="'+$(this).closest('li').attr('class')+'"]').addClass('selected');
	}).mouseout(function() {
		$('ul.map li').removeClass('selected');
	});

	/* Overlay */
	$('#overlay').height($(document).height());

	/* Lightbox */
	$('#lightbox').insertAfter('#overlay');
	$('a.lightbox').click(function() {
		$('#overlay').fadeTo(400, 0.7);
		$('#lightbox').fadeIn();
		return false;
	});
	$('#lightbox .close').click(function() {
		$('#overlay').fadeOut();
		$('#lightbox').fadeOut();
		return false;
	});
});

