		var optSlct = 0;
		var optLnk = '';
		
		function removeBg(){
			$('.idrplst a').each(function(e) {
				$(this).css({background: 'none', color: '#0000ff'});
			});
		}
		function addSlctBg(){
			$('.idrplst a').each(function(e) {
				if( e == optSlct){
					$(this).css({background: '#00ccff', color: '#ffffff'});
				}
			});
		}
		
		$(function () {
			optLeft = $('.slctbox').offset().left -105;
			optTop = $('.slctbox').offset().top+61;
			
			var fli;
			$('.slctbox option').each(function(e){
				if(e == 0) {fli = $(this)}
				
				name_text = $(this).text();
				link_text = $(this).attr('value');
				$('<li></li>')
                             .html('<a href="'+link_text+'">' + name_text + '</a>')
                             .appendTo('.idrplst ul');
			});
			$('.slctbox').hide();
			//16 chars
			
			optLnk = $(fli).attr('value');
			$('<div class="drplst">'+$(fli).text()+'</div>').appendTo($('.slctbox').parent());
			
			$('.drplst').click(function() {
				eInd = $('.idrplst').css('zIndex');
				fInd = $('.blklob').css('zIndex');
				if(eInd < fInd){
					$('.blklob').css({'zIndex': eInd});
					$('.idrplst').css({'zIndex': fInd});
				}
				
				$('.idrplst').css({left: -50+'px', top: 50+'px'});
				$('.idrplst').slideDown('fast');
				
				$('.idrplst a').click(function () {
					//Get Index of Option
					optSlct = $('.idrplst a').index(this);
					
					var txtDis = $(this).text();
					$('.drplst').text(txtDis.substring(0, 14));
					optLnk = $(this).attr('href');
					$('.idrplst').slideUp('fast');
					return false;
				});
				
				$('.idrplst a').hover(function(){
					$(this).css({background: '#00ccff', color: '#ffffff'});
				},function() {
					$(this).css({background: 'none', color: '#0000ff'});
				});
				
				removeBg();
				addSlctBg();
				
				return false;
			});
			
			
			$('.btgoclick').click(function() {
				window.document.location.href = optLnk;
			});
			
			// Document click close dropdown list
			$(document).bind('click', function() {
				$('.idrplst').slideUp();
			});
			
		});