// JavaScript Document

$(document).ready(function(){
						   
	if ( $("html").hasClass( "rgba" ) ) {
	
		var elements = $("a");
		elements.removeClass( "no_js" );
		elements.addClass( "js" );
		
		elements.mouseenter(function(event){
			var object = $(this);
			mouseOver(object);
		});
		elements.mouseleave(function(event){
			var object = $(this);
			mouseOut(object);
		});
	
	}

});

function mouseOver(object) {

	$(".hoverimage", object).fadeIn(
		200
	);
	
	$(".unhoverimage", object).fadeOut(
		200
	);
	
	object.animate(
		{backgroundColor: 'rgba(255, 255, 255, 1)'},
		200
	)
	
}

function mouseOut(object) {

	$(".unhoverimage", object).fadeIn(
		200
	);
	
	$(".hoverimage", object).fadeOut(
		200
	);
	
	object.animate(
		{backgroundColor: 'rgba(250, 250, 250, 0.1)'},
		200
	)
	
}
