﻿$j().ready(function () {
	$j(".DropDownPicker ul").hide().addClass("hidden");
	$j("body").click(function () {
		$j(".DropDownPicker ul").hide();
	});
	$j(".DropDownPicker a.selected").click(function () {
		$self = $j(this);
		$self.next().slideToggle(100).toggleClass("hidden");
		$self.blur();
		return false;
	});
	$j(".DropDownPicker ul li a").click(function () {
		//alert($j(this).parent().parent("ul").tagName);
		$j(this).parent().parent("ul").prev().text($j(this).text());
		$j(this).parent().parent().hide();
		//alert($j(this).text());
	});
});
