$(window).load(function() {
	var f_select_click = function() {
		$('#' + $(this).attr('rel')).slideToggle(400);
		return false;
	};
	
	var f_select_hide = function() {
		$('.CMSSelectDrop').slideUp(400);
	};

	var f_select_option = function() {
		var me = $(this);
		
		me.find('a.CMSOption').click(function(evt) {
			
			var a = $(this);

			var txt = a.attr('title') ? a.attr('title') : a.text();
			var val = a.attr('name') ? a.attr('name') : a.text(); 
			
			$('#' + me.attr('id') + '-but').text(txt);
			$('#' + me.attr('id') + '-hidden').val(val);
			
			me.slideUp(400);
			
			return false;
		});
	};
	
	$('a.CMSSelect').click(f_select_click);
	$('.CMSSelectDrop').each(f_select_option);
	
	$('body').click(f_select_hide);
});
