
jQuery(document).ready(function($){


	// ### FADE-DOWN FAST: 1.0 --> 0.5 ###
	// on page load
	$(".fadebttn_f img").fadeTo("fast", 1.0);
 
	$(".fadebttn_f img").hover(function(){
		// on hover event
		$(this).fadeTo("fast", 0.5);
		},function(){
		// on mouseout event
		$(this).fadeTo("fast", 1.0);
	});


	// ### FADE-DOWN SLOW: 1.0 --> 0.6 ###
	// on page load
	$(".fadebttn_s img, #searchbutton, #subbutton, #submit, #content .wpcf7-form .contact_form_button input").fadeTo("slow", 1.0);
 
	$(".fadebttn_s img, #searchbutton, #subbutton, #submit, #content .wpcf7-form .contact_form_button input").hover(function(){
		// on hover event
		$(this).fadeTo("slow", 0.6);
		},function(){
		// on mouseout event
		$(this).fadeTo("slow", 1.0);
	});


	// ### FADE-UP FAST: 0.5 --> 1.0 ###
	// on page load
	$("#footertop_inner .footnav_pages li a").fadeTo("fast", 0.5);
 
	$("#footertop_inner .footnav_pages li a").hover(function(){
		// on hover event
		$(this).fadeTo("fast", 1.0);
		},function(){
		// on mouseout event
		$(this).fadeTo("fast", 0.5);
	});


	$("#nav li a").removeAttr("title");

	if( jQuery.snowfall ){
		$(document).snowfall({
			maxSpeed : 10,
			flakeCount : 100, 
            //minSize : 1,
            //maxSize : 4
		});
	}

});

