$(document).ready(function(){
	
	$('#flickr a img').css({'opacity' :'0.8'});
	$('#mainContent .object .objectDes').css({'opacity' : 0});
	
	$('.object a').hover(function(){
		$(this).children('img').animate({bottom: '24px'},100);
		$('#mainContent .object .objectDes').animate({opacity: 1},300);
		
	}, function() {
		$(this).children('img').animate({
			bottom: '0px'
		}, 100);
		$('#mainContent .object .objectDes').css({'opacity' : '0'});

	});
	
	$('#flickr a img').hover(function(){
		$(this).animate({opacity: 1},100);
		
		
	}, function() {
		$(this).animate({
			opacity: 0.8
		}, 100);

	});

});


/*$(document).ready(function(){
	
	$('#flickr a img').css({'opacity' :'0.8'});
	$('#mainContent .object .objectDes').css({'opacity' : 0});
	
	$('#mainContent a img').hover(function(){
		$(this).animate({bottom: '24px'},100);
		$('#mainContent .object .objectDes').animate({opacity: 1},300);
		
	}, function() {
		$(this).animate({
			bottom: '0px'
		}, 100);
		$('#mainContent .object .objectDes').css({'opacity' : '0'});

	});
	
	$('#flickr a img').hover(function(){
		$(this).animate({opacity: 1},100);
		
		
	}, function() {
		$(this).animate({
			opacity: 0.8
		}, 100);

	});

}); */
