$(document).ready(function() {
	var windowWidth = $('ul.art li').size() * 450;
	$('div.gallery').css('width',windowWidth);
	$('ul.art li').hover(
		function () {
			$('> div.info',this).fadeIn();	
		}, 
		function () {
			$('> div.info',this).fadeOut();
		}
	);
	
	$('ul.art li div.info').hover(
		function () {
			$(this).fadeTo("slow",1)	
		}, 
		function () {
			$(this).fadeTo("slow",.6)
		}
	);
	
	$('div.title').hover(
		function () {
			$(this).fadeTo("slow",1)	
		}, 
		function () {
			$(this).fadeTo("slow",.6)
		}
	);
});