﻿$(document).ready(function(){

	// DISABLE CACHE
	$.ajaxSetup ({
		cache: false
	});

	// FANCYBOX
	$("a.fancybox").fancybox({
		'titlePosition': 'over',
		'cyclic': true
	});

	// BUTTONS
	$('a .button').hover(
		function () {$(this).attr("src","images/layout/"+$(this).attr("name")+"On.png");},
		function () {$(this).attr("src","images/layout/"+$(this).attr("name")+".png");}
	);

	// LINKS
	$("#links .input").change(function() {
		var album = $(this).val();
		window.location = "./?Album="+album;
	});
	
});
