$(document).ready(function(){
	$('#topslide li img').hover(function(){
			
			$(this).animate({marginTop: '-18px'},300);
			$(this).animate({width: '200px'},300);
			$(this).css('z-index','2');
			
	},function(){
		$(this).animate({width: '145px'},300);
				$(this).animate({marginTop: '0px'},300);
				$(this).css('z-index','0');
	})
	
	$('.leftitemtitle').toggle(function(){
			$(this).next('.sumenuwrap').show(500);
	},function(){
			$(this).next('.sumenuwrap').hide(500);
	})
})
