/* package-version: 2010-09-02-B-axa-direct-2.2 */
	$("select.smallSelect").attr("display","none");
    function selectFiction(){
		$(".SF-container").click(function(){
			if($(this).children(".SF-options").css("display")=="none"){ $(this).children(".SF-options").show(200);}
			else if($(this).children(".SF-options").css("display")=="block"){ $(this).children(".SF-options").fadeOut(300);}
		});
		$(".SF-options label").click(function(){
			$(this).parent().parent().parent().children(".SF-field").text($(this).text());
			if($(this).parent().parent().css("display")=="none"){ $(this).parent().parent().show(200);}
			else if($(this).parent().parent().css("display")=="block"){ $(this).parent().parent().fadeOut(300);}
			//$("input #"+$(this).attr("for")).attr("checked","checked");
		});
		$(".SF-options .SF-li").hover(
			function(){
				$(this).css("background", "#eeeeee");
			},
			function(){
				$(this).css("background", "#ffffff");
			}
		);
	}

$(document).ready(function(){
	selectFiction();

});