// JavaScript Document
$(document).ready(function(){
	prodclear = 0;
	$("#search").click(function(){		
			if(!prodclear){
				$(this).attr('value','');
				prodclear = 1;
				}				
			});
	
	$(".jsdrop label").mouseover(function(){		
			$(".jsdrop ul").css({
					display : 'block',
					position : 'absolute'
					});	
			
			// mouseover
			$(".jsdrop ul li").mouseover(function(){
					$(this).css({
						backgroundColor : 'green',
						color : 'white',
						cursor : 'pointer'
						});
				});
			
			// mouseout			
			$(".jsdrop ul li").mouseout(function(){
					$(this).css({
						backgroundColor : 'white',
						color : '#555'
						});
				});	
			
			// mouseout			
			$(".jsdrop ul li").click(function(){
					$("#clubId").attr('value',$(this).attr('id'));
					$(".jsdrop label").text($(this).text());
						$(".jsdrop ul").css({
							display : 'none'
						});	
				});	
			
			
			// click end
			});
	
	// domready
		});
