$(document).ready(function() {
   
    /* Make banners fade when no-hover snippet */
    $('.adrotate_widget').css({'opacity' : '0.3'}); /* Sets the standard */
    
    $('.adrotate_widget').hover(function(){         /* Does the animation on hover */
        $(this).stop(true, true).animate({'opacity' : '1'})
    }, function() {
        $(this).stop(true, true).animate({'opacity' : '0.3'})
    });
    
    
    /* Scoll to top snippet */
    $('a[href=#toTop]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
 
    
    /* Snow variables 
    snowStorm.snowColor = '#fff';
    snowStorm.flakesMaxActive = '40';
    snowStorm.useTwinkleEffect = false;
    snowStorm.snowCharacter = '*';
    snowStorm.freezeOnBlur = true;
    snowStorm.followMouse = false;
    snowStorm.snowStick = false;
    */
    
    /* Slideshow on homepage block transitioning */
    new Blockster({
		holder: '.image_reel',
		rows: 6,
		cols: 6,
		random: true
	});

    

    
    
});
