function accover() {
	//alert('hi ' + $(this).attr('id'));
	var id = $(this).attr('id');
	var pos = $(this).offset();
	if(id == 'smartstep') {
		pos.top -= 49;
	}	
	$('#acc-top #pop').empty().css({top: (pos.top-143), left: (pos.left-209)})
		.append('<a href="'+$(this).attr('href')+'"><img src="../images/accessories/rollovers/'+id+'-txt.gif" /><img src="../images/accessories/rollovers/'+id+'.jpg" /></a>')
		.append($(this).next().clone()).fadeIn("fast");
	$('#acc-top #bye').show();
}
$(function() {
	$('#acc-top a[id]').show().mouseover(accover);
	$('#acc-top').append('<div id="pop"></div><a href="" id="bye"></a>');
	$('#acc-top #bye').mouseover(function() {
		$('#acc-top #pop').fadeOut();
		$(this).hide();
	});
});
