$(document).ready( function() {
		$("select").sb({
			fixedWidth: true
		});
});

$(document).ready(function(){
    $("input[type='radio']").custCheckBox({
		//a click event call back
        callback: function() {
            id = $(this).next("input").attr("id"); // eredeti radio id
            $('#'+id).trigger('click'); // meghivja a clicket amely nem hajtodik vegre a custom radio miatt
        }
    });
});

