//--------------------------------------------------

function SMInit() {

//--------------------------------------------------

	var SMContainerTop = null;
	
//--------------------------------------------------
	
	window.addEvent("domready", function() {
		try {
			var SMContainer = $("socialmedia");
			SMContainerTop = parseInt(SMContainer.getStyle("top"));
		
			SMContainer.getElements("div.socialmedia").each(function(item, index) {
				item.addEvent("mouseover", function(e) {
					$(this).tween("left", 0);
				});
				
				item.addEvent("mouseout", function(e) {
					$(this).tween("left", -56);
				});
			});
		} catch(e) {}
		
//--------------------------------------------------
		
		// IE Fix
		if(Browser.Engine.trident) {
			try {
				var SMContainer = $("socialmedia");
				
				SMContainer.setStyle("position", "absolute");
				
				window.onscroll = function(e) {
					SMContainer.setStyle("top", SMContainerTop + document.body.scrollTop);
				}
			} catch(e) {
				SMContainer.setStyle("top", SMContainerTop);
			}
		}
	});

//--------------------------------------------------

}

//--------------------------------------------------
