$(document).ready(function() {
    $('#images-wrapper').jcarousel({scroll: 1});
   
    $('.press-pics').each(function(idx) {
    
    	$(this).children("li").each(function(idx2) {
    		$("a", this).attr("rel","colorbox-"+idx);
    	});
    
    	$("a[rel='colorbox-"+idx+"']").colorbox({title:false,height:'650px'});

    	
    });
        
    $('#images-wrapper').children("li").each(function(idx) {
    	$("a", this).attr("rel","colorbox-images");
    });
    
    $("a[rel='colorbox-images']").colorbox({title:false,height:'650px'});



});


