jQuery(document).ready(function() {
    jQuery('.clickables li').click(function() {
        var radiob = jQuery(this).find('input[name=me]');
        radiob.attr('checked','checked');
        SetTShirtDivColour(radiob.val());
    });

    SetTShirtDivColour(jQuery('input[name=me]:checked').val());
        jQuery("input[name*='me']").click(function() {
            SetTShirtDivColour(jQuery(this).val());
        });
    });

    function SetTShirtDivColour(colour) {
	
}
