$(document).ready( function() {
	/*
	var search = document.getElementById('search');
	var dropdown = document.getElementById('dropdown');
	
	search.onmouseover = function(){
		dropdown.style.display="block"
		search.src=defaultImageURL+'search_h.jpg'
	}
	search.onmouseout = function(){
		dropdown.style.display="none"
		search.src=defaultImageURL+'search.png'
	}

	dropdown.onmouseover = function(){
		dropdown.style.display="block"
		search.src=defaultImageURL+'search_h.jpg'
	}
	dropdown.onmouseout = function(){
		dropdown.style.display="none"
		search.src=defaultImageURL+'search.png'
	}*/
	
	var searchDefaulText = 'Enter web id #,agent id or address';
	
	$('li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); }
			);
	
	$('#topSearchBox').click(function() {
		var value = $(this).val();
		
		if (searchDefaulText == value) {
			
			$(this).val('');
		}
		
		
		//alert('222');
	});
	
    $('#topSearchBox').blur(function() {
    	
        var value = $(this).val();
        
        if (searchDefaulText == value) {
			
			$(this).val('');
		}
		
		if ('' == value) {
			
			$(this).val(searchDefaulText);
		}
    	//alert('111');
		
	});
    
    $('#top_box_search_submit').click(function(){
    	
        var value = $('#topSearchBox').val();
        
        if (searchDefaulText == value) {
			
			$('#topSearchBox').val('');
		}
		
    });
	
});
