// JavaScript Document
// opacity is replaced by color

$(document).ready(function(){
		
			
            $("#about_subnav li.button").click(function(){
            $("#about_subnav li").removeClass("selected");	
            	$clicked = $(this);
				$clicked.addClass("selected");
            	
            	// if the button is not already "transformed" AND is not animated
            	if ($clicked.css("color") != "#ffffff" && $clicked.is(":not(animated)")) {
            		
            		$clicked.animate({
            			color: '#ffffff',
            			borderWidth: 5
            		}, 600 );
            		
            		// each button div MUST have a "xx-button" and the target div must have an id "xx" 
            		var idToLoad = $clicked.attr("id").split('_');
            		
            		//we search trough the content for the visible div and we fade it out
            		$(".basicpage_left").find("div:visible").hide("medium", function(){
            			//once the fade out is completed, we start to fade in the right div
            			$(this).parent().find("#"+idToLoad[0]).show("medium");
            		})
            	}
            	
            	//we reset the other buttons to default style
            	$clicked.siblings(".button").animate({
            		color: '#500202',
            		borderWidth: 1
            	}, 600 );
            	
            });
		});


$(document).ready(function() {
	$("span.contactus_button a").fancybox({
		'hideOnContentClick'	: false,
		'overlayShow'			: true,
		'frameWidth'			: 673,
		'frameHeight'			: 678,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

});

$(document).ready(function() {
	$(".contactlink a").fancybox({
		'hideOnContentClick'	: false,
		'overlayShow'			: true,
		'frameWidth'			: 673,
		'frameHeight'			: 678,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

});


$(document).ready(function() {
	$(".maillink a").fancybox({
		'hideOnContentClick'	: false,
		'overlayShow'			: true,
		'frameWidth'			: 650,
		'frameHeight'			: 605,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

});

$(document).ready(function() {
	$("span.maillist_button a").fancybox({
		'hideOnContentClick'	: false,
		'overlayShow'			: true,
		'frameWidth'			: 650,
		'frameHeight'			: 605,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

});

$(document).ready(function() {
	$("a.tv_popup").fancybox({
		'hideOnContentClick'	: false,
		'overlayShow'			: true,
		'frameWidth'			: 640,
		'frameHeight'			: 505,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

});


$(document).ready(function() {
	$("a.tv_popup2").fancybox({
		'hideOnContentClick'	: false,
		'overlayShow'			: true,
		'frameWidth'			: 641,
		'frameHeight'			: 430,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

});

$(document).ready(function() {
	$("a.party_group").fancybox({
		'hideOnContentClick': false
	});
}); 

$(document).ready(function() {
	$('a.tt-flickr').fancybox({
		'hideOnContentClick': false
	});
});    