jQuery(document).ready(function(){
	jQuery("#breadcrumb").animate({ opacity: 0.2}, 500 );
	jQuery(".transparent img").animate({ opacity: 0.5}, 500 );

	jQuery('#picture').hover(
    function () {
      // second parameter is speed
      jQuery('#breadcrumb').animate({ opacity: 1}, 150 );
    },
    function () {
      jQuery('#breadcrumb').animate({ opacity: 0.2}, 500 );
    });	
	
	

	
		jQuery('.transparent img').hover(
    function () {
      // second parameter is speed
      jQuery(this).animate({ opacity: 1}, 10 );
    },
    function () {
      jQuery(this).animate({ opacity: 0.5}, 50 );
    });
		


});