
/*Slide khách hàng*/
$(function() {
	$(".slide").jCarouselLite({
		hoverPause:true,
		visible: 5,
		auto:2000,
		speed:1000
	});
	$(".list_phancung ul li:nth-child(3n)").addClass('nomargin');
	$(".gallery_info ul li:nth-child(3n)").addClass('nomargin');
	$(".gallery_info_3 ul li:nth-child(4n)").addClass('nomargin');
	$(".gallery_info_1 ul li:nth-child(2n)").addClass('nomargin');
});

$(document).ready(function(){
	
	$('#login').click(function(){
		$('#login_box').slideToggle();
	});
	
/* Chỉ mục chạy nhảy begin */
	 $('a[href*=#]').click(function() {
			 if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
			 && location.hostname == this.hostname) {
			   var $target = $(this.hash);
			   $target = $target.length && $target
			   || $('[name=' + this.hash.slice(1) +']');
			   if ($target.length) {
			  var targetOffset = $target.offset().top ;
			  $('html,body')
			  .animate({scrollTop: targetOffset}, 1000);
				return false;
			   }
			 }
			  });
/* Chỉ mục chạy nhảy end */
	
});



// Menu slide
function initMenu() {
  $('#menu ul').hide();
  $('#menu li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});


