jQuery(document).ready(function(){
			
			// Rollover effects
			
			jQuery('.image a:has(img)').hover(function(){
				jQuery('img', this).animate({ opacity : .5 }, 250 );
				},
				function () {
					jQuery('img', this).animate({ opacity : 1 }, 250 );
				}
			);
			
			jQuery('.video a:has(img)').hover(function(){
				jQuery('img', this).animate({ opacity : .5 }, 250 );
				},
				function () {
					jQuery('img', this).animate({ opacity : 1 }, 250 );
				}
			);
			
			jQuery('.gallery-item a:has(img)').hover(function(){
				jQuery('img', this).animate({ opacity : .7 }, 250 );
				},
				function () {
					jQuery('img', this).animate({ opacity : 1 }, 250 );
				}
			);
			
		});
