// JavaScript Document

$(document).ready(function(){
	$('.slideshow').css( 'opacity', 0.9 );
	var width = '155px';
	var height = '110px';
	var nwidth = '200px';
	var nheight = '141px';
	$('.slideshow').hover(function(){
/*		$(this).children('img').animate({ width: nwidth, height: nheight, left: '-22px', top: '-15px' }, 'fast');	*/
		$(this).animate({ opacity: 1 }, 'fast');
	}, function(){
/*		$(this).children('img').animate({ width: width, height: height, left: 0, top: 0 }, 'fast');	*/
		$(this).animate({ opacity: 0.9 }, 'fast');
	});
});
