// JavaScript Document
function showApps(){
	$("#apps").slideDown("fast");
}

function hideApps(){
	$("#apps").slideUp("fast");
	$("#panels").animate({scrollTop : 0},'slow');
}

$(document).ready(function(){
	$("#apps a").click(function(event){
		var w = 471;
		var n = $(this).attr("name");
    	$("#panels").animate({scrollTop : n*w},'slow');
   });
	
	$(".screens a").click(function(event){
		var n = $(this).attr("name");
 		var img = $(this).children("img").attr("src");
		$("#"+n).attr('src', img);
 	});
	
	var hash = window.location.hash.replace( /%20/g, ' ' );
	$('#apps a[href*="' + hash + '"]').trigger('click');	
	
});

