/*
				 .88888888:.
				88888888.88888.
			      .8888888888888888.
			      888888888888888888
			      88' _`88'_  `88888
			      88 88 88 88  88888
			      88_88_::_88_:88888
			      88:::,::,:::::8888
			      88`:::::::::'`8888
			     .88  `::::'    8:88.
			    8888            `8:888.
			  .8888'             `888888.
			 .8888:..  .::.  ...:'8888888:.
			.8888.'     :'     `'::`88:88888
		       .8888        '         `.888:8888.
		      888:8         .           888:88888
		    .888:88        .:           888:88888:
		    8888888.       ::           88:888888
		    `.::.888.      ::          .88888888
		   .::::::.888.    ::         :::`8888'.:.
		  ::::::::::.888   '         .::::::::::::
		  ::::::::::::.8    '      .:8::::::::::::.
		 .::::::::::::::.        .:888:::::::::::::
		 :::::::::::::::88:.__..:88888:::::::::::'
		  `'.:::::::::::88888888888.88:::::::::'
		miK     `':::_:' -- '' -'-' `':_::::'`
*/

// DanielGibbs.Net
$(document).ready(function(){
	
	// Contact form
	$("#contact_submit").live('click', function(event){
		var formdata = $("#form input, textarea").serializeArray();
		
		$("#form").css("opacity", "0.2");
		$("#form input[type=text],textarea").attr("disabled", "disabled");
		$(".loading").css("display", "block");
		
		$.ajax({
			type: "POST",
			url: "library/contactform.php",
			cache: false,
			data: { contact: formdata },
			
			success: function(html) { 
				$("#form").html(html); 
			},
			
			complete: function() {
				$("#form").css("opacity", "1");
				$(".loading").css("display", "none");
				$("#form input[type=text],textarea").attr("disabled", "");
				$.scrollTo("#cs", 800 );
			}
		});
	});
	
	// Contact form error class
	$("input, textarea").live('click', function() {
		$(this).removeClass("form_error");
	});
	
	// Content block
	$("a.ac").click(function() {
		var old_content = $("#content_block").children(":visible").attr("id");
		var new_content = $(this).attr("id");
		new_content = new_content.replace(/a_/, "");
		
		$("li .sel").removeClass("sel");
		$(this).addClass('sel');
		
		$("#content_block").children(":visible").each(function() {
			$(this).fadeOut("slow");
		});
		
		$("#"+new_content).css("display", "table");
		$("#"+new_content).fadeIn("fast");
		
		return false;
	});
	
	// Scroll
	$("a.scroll").click(function() {
		var sloc = $(this).attr("id");
		sloc = sloc.replace(/s_/, "");
		sloc = sloc.replace(/f_/, "");
		
		$("#information section").not("#"+sloc).css("opacity", "0.2");
		$("#"+sloc).css("opacity", "1");
		$.scrollTo("#"+sloc, 1200 );
		return false;
	});
	
	// Re-opacify ho ho ho
	$("#information section").mousemove(function() {
		$(this).css("opacity", "1");
	});
});

