$(document).ready(function(){
	if($.browser.msie && $.browser.version == "6.0") {
		$("#live_ch").css("position","absolute");
		$("#feedback").css("position","absolute");
	}
	
    $('#live_ch a').mouseover(function(){
        $(this).css('margin-left','2px').animate({'margin-left':'2px'},100);
    }).mouseout(function(){
		$(this).css('margin-left','4px').animate({'margin-left':'4px'}, 100);
	});
	
	$('#feedback a').mouseover(function(){
        $(this).css('margin-left','2px').animate({'margin-left':'2px'},100);
    }).mouseout(function(){
		$(this).css('margin-left','0px').animate({'margin-left':'0px'}, 100);
	});
});

