// JavaScript Document
jQuery(document).ready(function(){    	
	 //wrapAll khach hang doi tac //#slidergallerys #galleryContainers #theImages #thums .addClass('logocustom')
	var custommerlength = jQuery("#slidergallerys #galleryContainers #theImages #thums li").addClass('logocustom').length;
	var custommermath = Math.ceil(custommerlength/6);
	for (i=0; i<custommermath; i++) {
		jQuery("#slidergallerys #galleryContainers #theImages #thums > li.logocustom").slice(0,6).wrapAll('<div class="dynamicwrap"></div>');
	};
 
   //khach hang doi tac
	if(jQuery("#slidergallerys #galleryContainers #theImages #thums").length>0)
		{
			jQuery('#slidergallerys #galleryContainers #theImages #thums').after('<div id="nav">').cycle({ 
				        fx:     'scrollLeft',  
					    speed: 500, 
					    timeout: 8000, 
					    pager:  '#nav',
					    next:   '#next2', 
					    prev:   '#prev2'
				});
		}
});

