
jQuery(document).ready(function() {
/* options can be found within the plugin js */

// not only add the text on hover, but also the fade on white effect
jQuery('.section_item_wrapper').hover( 
            function(){ $(this).stop().animate({  opacity: 0.2 }, 1000);}, 
            function(){ $(this).stop().animate({ opacity: 1}, 1000);});
jQuery('.section_container').HoverImageText();
jQuery('.cover_thumb').jScale({w:'92px'});
});
