	
	
	$(document).ready(function(){
		
		
		
		$('.pic').each(function() {
				id = this.id;
				
				$("#" + this.id).cycle({ 
				    fx:     'fade', 
				    speed:  1400, 
				    timeout: 3000
				});
				
				$("#" + id).cycle('pause');
					
						
				$("#stop_" + id).click(function() {
					$('#' + this.id.substr(5, 7)).cycle('pause');
					return false; 
				});

				$("#start_" + id).click(function() { 
					$('.pic').each(function() {
						id = this.id;
						$("#" + id).cycle('pause');
					});
				
				
					$('#' + this.id.substr(6, 7)).cycle('resume');

					return false; 
				});				
		});
	 });