// JavaScript Document
$(window).load(function(){
			var thumbnail = {
				imgIncrease : 0,
				effectDuration : 200,
				imgWidth : $('.thumbnailWrapper ul li').find('img').width(), 
				imgHeight : $('.thumbnailWrapper ul li').find('img').height() 			
			};
			$('.thumbnailWrapper ul li').css({ 		
				'width' : thumbnail.imgWidth, 
				'height' : thumbnail.imgHeight 			
			});
			$('.thumbnailWrapper ul li').hover(function(){
				$(this).find('.captionbg:not(:animated)').animate({backgroundColor: '#000000', 
  				"bottom": "-1", "opacity": 0.7
				}, 200)
				$(this).find('.caption:not(:animated)').animate({"color": "#ffffff",
  				"bottom": "-1", "opacity": 1
				}, 200)
				;
				
				
				
			}, function(){	
				$(this).find('.caption').animate({"color": "#ffffff",
  				"bottom": "-29", "opacity": 1,
				}, 200);
				$(this).find('.captionbg').animate({backgroundColor: '#777777',
  				"bottom": "-29", "opacity": 0.9
				}, 200);					
			});		
		});


