jQuery(function($) {
	/* combo box */
	$('.combo-box a.button').click(function(){
		$('.combo-box #fmView').slideToggle();
	});

        /* search form value toggle*/
        var searchText = '';
        $('.inputA .txt').focus(function(){

            searchText = $(this).val();
            $(this).val('');

        });

        $('.inputA .txt').focusout(function(){

            var puttedText = $(this).val();
            if(puttedText === '') {
                $(this).val(searchText);
            };

        });
});

$(function() {
	/* combo box */
	$('.combo-box a.button').click(function(){
		$('.combo-box #fmView').slideToggle();
	});


	/* gnb */
	$("#gnb ul li a img").hover(
		
		function() {			
			var src = $(this).attr('src');	
			$(this).attr('src', src.replace('.gif', '_on.gif'));
		}, 
		function() {
			var src = $(this).attr('src');	
			$(this).attr('src', src.replace('_on.gif', '.gif'));
		}
	);


	/* utill inputbox */
	$("input#topSearch").val('');
	$("input#topSearch").click(function() {
		$(this).val('');
	});

});
