$(document).ready(function() {
	$(".donate_button").click(function () {
		var selectfriendship = $(this).attr("id");
		pageTracker._trackPageview("/giftselection"+selectfriendship);
		$("#step1").html("");
		$("#signup").fadeIn("fast", function showmenu() {
			$("#form_container").load("form.php", {'friendshiptype' : selectfriendship}, function() {
				init_dbpost();
			}
			);	
		});
		return false;
	});
	
	$(".partner").live("click",function() {
		$("#video_container").css("width", "0");
		$(this).overlay({effect: "apple", api: true}).load();
	});
	$("a[rel]").live("click",function() {
		$("#video_container").css("width", "0");
		$(this).overlay({effect: "apple", api: true}).load();
		});
	$(".close").live("click",function() {
		$("#video_container").css("width", "574px");

		 $("#video_container").show();
		});

		//Back button Fix
		$.address.init(function(event) {
            // Enables the plugin for all the tab links
        	$(".ajaxBack").address();            
        }).change(function(event){
        	if(event.path == "/") {
        		$("#signup").fadeOut("fast");        		
        	}
			if(event.path == "/venskab") {
				$("#step2").fadeOut("fast", function() {
					$("#signup, #step1").fadeIn("fast");        		
				});	
        	}        	
	        if(event.path == "/info") {
				$("#step1, #step3").fadeOut("fast", function() {
					$("#step2").fadeIn("fast");        		
				});

        	}
        });
}); 

