$(document).ready(function() {
    
    $("#oneWay label").click(function () {
        $("#oneWay label").removeClass("tourradio").removeClass("onactive");
    	$(this).addClass("tourradio").css({opacity: 1});
    });
    
    $("#oneWay label").mouseover(
    	function(){
    		$(this).not(".tourradio").addClass("onactive");
    	});
    
    $("#oneWay label").mouseout(
    	function(){
    		$(this).removeClass("onactive");		
    });
    
    // ========================================
    $("#gender_0 label").click(function () {
        $("#gender_0 label").removeClass("tourradio").removeClass("onactive");
    	$(this).addClass("tourradio").css({opacity: 1});
    });
    
    $("#gender_0 label").mouseover(
    	function(){
    		$(this).not(".tourradio").addClass("onactive");
    	});
    
    $("#gender_0 label").mouseout(
    	function(){
    		$(this).removeClass("onactive");		
    });        
});                        