$(document).ready(function(){
	
	$('.stBox').hover(function(){
		if ($(this).children('.itemsBx').length) {
			$(this).children('.itemsBx').slideDown(120);
		}
	},function(){
		if ($(this).children('.itemsBx').length) {
			$(this).children('.itemsBx').slideUp(100);
		}
	});
});  

