$(document).ready(function()
{	
	/*----------------------------- Home Page */
	
	$("#homePage .imageBtn").click(function()
	{
		if($("#homePage div:visible").attr("id") == this.name) // Click the same image twice
		{
			$("div[id='" + this.name + "']").fadeOut("slow");
			$("#homePage img.imageBtn").fadeTo("slow", 1);
		}
		else // Click a different image
		{
			$("#homePage div").fadeOut("slow");
			$("div[id='" + this.name + "']").fadeIn("slow");
			$("#homePage img[name!='" + this.name + "']").fadeTo("slow", 0.45);
			$("#homePage img[name='" + this.name + "']").fadeTo("slow", 1);
		}
	});
	
	$("#homePage span.closeBtn").click(function()
	{
		$("#homePage img.imageBtn").fadeTo("slow", 1);
		$("#homePage div").fadeOut("slow");
	});
	
	/*----------------------------- Project Thumbnails */
	
	var currentUrl = window.location.href;
	var currentUrlArray = new Array();
	currentUrlArray = currentUrl.split('/');
	var currentPage = currentUrlArray[3];
	
	var projectThumbnails = $("#featuredProjects ul li a[href!='" + currentPage + "'] img");
	projectThumbnails.fadeTo(0, 0.45);

	projectThumbnails.hover(function()
	{
		$(this).fadeTo("slow", 1);
	},function()
	{
		$(this).fadeTo("slow", 0.45);
	});
	
	/*----------------------------- Status Bar Text */
	
	window.status = 'Done';

}); // Close document.ready
