$(function(){
    $('.bull').mouseover(function(){
    	$('#' + $(this).parent().attr('class')).clone().insertAfter($(this)).show().hover(function(){},function(){$(this).hide();});
    });
    $('#radiobar tr:even').css("background-color", "#EAEDEE");
    $('#radiobar tr:odd').css("background-color", "#DFE3E5");
    $('#radiobar tr:first').css('background','none');
});
$(document).ready(function() {
    $('.controls').live('click', function() {
        if (!$(this).hasClass('activecontrol')) {
            var it_id = $(this).attr('id').replace('control-', '');
            $('.activeitem').removeClass('activeitem');
            $('.activecontrol').removeClass('activecontrol');
            $(this).addClass('activecontrol');
            $('#item-'+it_id).addClass('activeitem');
        }
    });
});
