// JavaScript Document
$(document).ready(function(){

$(".ddenterlink").hover(function() {
	
$("#entercontainer").removeClass();
$("#entercontainer").addClass("ddenter001");

$("#entersite").stop().animate({
	opacity: 0
}, 600);
}, function () {
$("#entersite").stop().animate({
	opacity: 1
}, 600);
});

});
