$(document).ready(function()
{
	// External links
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

	// Banners
	$('#images').cycle({
		next: '#next',
		timeout: 3000
	});

	// Click all
	$('#cl_all').click(function(){
		$('.loc > div').removeClass("active");
		$('#cl_all').parent().addClass("active");
		$('#cur').hide();
		$('#bon').hide();
		$('#all').show();
	});

	// Click bonaire
	$('#cl_bon').click(function(){
		$('.loc > div').removeClass("active");
		$('#cl_bon').parent().addClass("active");
		$('#cur').hide();
		$('#all').hide();
		$('#bon').show();
	});

	// Click curacao
	$('#cl_cur').click(function(){
		$('.loc > div').removeClass("active");
		$('#cl_cur').parent().addClass("active");
		$('#bon').hide();
		$('#all').hide();
		$('#cur').show();
	});

	// Spin logo
	$('.spinlogo').hover(function()
	{
		$(this).find('span').slideToggle('slow');
	},function()
	{
		$(this).find('span').slideToggle();
	});
	
});
