$(function() { 
	// initialize scrollable 
	$("div.scrollable").scrollable({size:2}).circular().autoscroll({interval : 10000});
	$('.slideshow').cycle({fx: 'fade'});
	$(".lightbox").colorbox({maxHeight:"85%"});		
}); 

function Login() {
	var username = document.getElementById("username").value;
	var password = document.getElementById("password").value;
	if (username && password) {
		var ftpsite = "ftp://" + username + ":" + password + "@remote.phinneydesign.com";
		window.location = ftpsite;
	}
	else {
		alert("Please enter your username and password.");
	}
	return false;
}
