	var opacity = true;
	/*this script if for the Social Media Icon*/
    jQuery(function() {
				 jQuery("#sm li").hover(function() {
			var e = this;
		    jQuery(e).find("a").stop().animate({ top: "-10px" }, 300, function() {
		    	jQuery(e).find("a").animate({ top: "5px" }, 1000, function(){
					jQuery(e).find("a").animate({ top: "0px" }, 500);
				});
		    });
		});
	});	

	/*this script if for the button*/
	jQuery(document).ready(function(){
	jQuery("#icons img").hover(function(){
		if(opacity)
		{
			jQuery(this).stop().animate({opacity: 0.75, marginTop: -10}, 400);
		} else {
			jQuery(this).stop().animate({marginTop: -10}, 400);
		}	
	},function(){
		if(opacity)
		{
			jQuery(this).stop().animate({opacity: 1.0, marginTop: 0}, 400);
		} else {
			jQuery(this).stop().animate({marginTop: 0}, 400);
		}
	});
	});

	

	


