// JavaScript Document
$(document).ready(function(){
	$('.col-module .parent ul').hide();
	$('.col-module .parent ul:first').show();
	
	$('.col-module .parent li a').click(
		function() {
			var checkElement = $(this).next();
			if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('.col-module .parent ul:visible').slideUp('normal');
				checkElement.slideDown('normal');
				return false;
			}
		}
	);
	$('#txt_topSearch').click(function(){
		$(this).attr({'value' : ''});
	});
	$('#txt_topSearch').blur(function(){
		$(this).attr({'value' : 'Từ khóa...'});
	});
});
