jQuery(document).ready(function(){
			
			//LazyLoad Images
			jQuery("img").lazyload({
				effect      : "fadeIn"
			});
			
			
			// 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('.misc a:has(img)').hover(function(){
				jQuery('img', this).animate({ opacity : .5 }, 250 );
				},
				function () {
					jQuery('img', this).animate({ opacity : 1 }, 250 );
				}
			);
			
			
			/////////////////////////////////
			
			
			
		
			
		});
