$(document).ready(function() {

// Remove PreScreen which is used to hide objects from view until they are loaded. may use a loading animation
$('.fx_Prescreen').css("display", "none");


// Top banner Items Mouseover/Out Behaviours
$(".fx_Bounce").mouseover(function(){
  $(this)
	.animate({top:"-=20px"},100).animate({top:"+=20px"},100)
	.animate({top:"-=15px"},100).animate({top:"+=15px"},100)
	.animate({top:"-=10px"},100).animate({top:"+=10px"},100);
});

$(".fx_Wiggle").mouseover(function(){
  $(this)
	.animate({left:"-=20px"},50).animate({left:"+=20px"},50)
	.animate({left:"-=20px"},50).animate({left:"+=20px"},50)
	.animate({left:"-=20px"},50).animate({left:"+=20px"},50);
});


$(".fx_Zoom").hover(
  function () {
    $(this).animate({height:"+=20px", width:"+=20px"}, 250);
  },
  function () {
    $(this).animate({height:"-=20px", width:"-=20px"}, 250);
  }
);


	/*
	$("#DnP-Badges-CON .Badge a").hover(function(){
		$(this).animate({padding:"4px"}, 100);
		}, function() {
		$(this).animate({padding:"2px"}, 100);
	}); 
	*/

});

