jQuery(function ($) {
	$(document).ready(function() {
	
    	var $container = $('#container').before('<ul class="swicher">').cycle({
    		fx:     'fade', 
   			speed:   300,
   			timeout: 6000,
   			pause:   1,  
    		pager:  '.swicher',
    		
    		// callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
        return '<li><a href="#">2</a></li>'; 
    }
    		
    		 
			}); 
		$(".videoPop").colorbox({width:"580", height:"450", iframe:true});
		
	});
});

