function init_v_center(){
 
}
$(function(){
	$(".DT_check_hover").hover(
		function(){
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
		}
	);
	$('.top_menu li ul').each(function(){
		$(this).width($(this).parent().width());	 
	});
	$(".DT_v_center").each(function(){
	  $(this).css('padding-top', "" + (($(this).parent().height()-$(this).height()) / 2) + "px");
	 });
	$('.DT_checkbox').click(function () {
      $(this).toggleClass('checked');
    });					  
});