$(document).ready(function(){	
	$(".iconlinktab")
	.css( {backgroundPosition: "0 -10px"})
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:200})
		$(this).children(".iconlinkcontent").stop().animate({paddingTop:"10px"}, {duration:200})
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0px -10px)"}, {duration:200, complete:function(){
			$(this).css({backgroundPosition: "0 -10px"})
		}})
		$(this).children(".iconlinkcontent").stop().animate({paddingTop:"0px"}, {duration:200, complete:function(){
			$(this).children(".iconlinkcontent").css({paddingTop: "0px"})
		}})				
	})
	//IE6 Transparency fix
	if(jQuery().supersleight) {
		$('body').supersleight({shim: '/images/trans.gif'});
	}
	
});	