$(document).ready(function() {
	$("input[name=url]").focus(function(){
		this.select();
	});
	
	$("a.photo").fancybox({ 
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayShow': true, 
		'overlayOpacity': 0.8, 
		'overlayColor': '#000'
	}); 

	$("select[name=albums]").change(function() {
		if ($(this).val() != "") {
			document.location.href = $(this).val();
		}
	});
});