File: /home/mmickelson/martyknows.com/wp-content/themes/origin/js/footer-scripts.js
/* <![CDATA[ */
var jqu = jQuery.noConflict();
jqu( function () {
/* Fade Image (links) Hover */
jqu( "a img" ).hover( function() {
jqu( this ).stop().animate( {opacity: .85}, 'fast' );
}, function() {
jqu( this ).stop().animate( {opacity: 1}, 'fast' );
} );
/* Fancybox */
jqu( "a[href$='.jpg'], a[href$='.jpeg'], a[href$='.png'], a[href$='.gif']" ).attr( 'rel', 'lightbox' );
jqu( "a[rel^='lightbox']" ).fancybox( { titleShow: false, overlayOpacity: .8, overlayColor: '#000' } );
/* FitVids */
jqu( ".entry-content" ).fitVids();
} );
/* ]]> */