
/*$(document).ready(function(){
	$('.work_entry').each(
		   $('.pics')
		   .cycle({
			fx:     'fade', 
			speed:  'slow', 
			timeout: 0, 
			next:   '.next_arrow', 
			prev:   '.prev_arrow',
			pager:  '.pics_nav_boxes' 
		   })
	)
});

*/
$(document).ready(function(){
	$('.work_entry').each(function(i) {
		   $('.pics').each(function(j){$(this).attr('id', 'pics_'+j)});
		   $('.next_arrow').each(function(j){$(this).attr('id', 'next_'+j)});
		   $('.prev_arrow').each(function(j){$(this).attr('id', 'prev_'+j)});
		   $('.pics_nav_boxes').each(function(j){$(this).attr('id', 'pics_nav_'+j)});

		   $('#pics_'+i)
		   .cycle({
			fx:     'fade', 
			speed:  'slow', 
			timeout: 0, 
			next:   '#next_'+i, 
			prev:   '#prev_'+i,
			pager:  '#pics_nav_'+i 
		   })
	})
});