$(document).ready(function(){
	$('input[type="text"]').addClass('text');
	$('input[type="submit"]').addClass('submit');
	$('.menu_top li:first').addClass('first');
	$('.menu_top li:last-child').addClass('last');
	$('.menu_top li').mouseover(function(){
		$(this).addClass('hover');
	}).mouseout(function(){
		$(this).removeClass('hover');
	});
	$('.show_sec').click(function(){
		var showSec = $(this).attr('href');
		$(showSec).slideToggle();
		return false;
	});
});
