
//Jquery Document
$(document).ready(function()
 {
		  $("#table_cat a").click(function(event)
			{
					var linkTitle = $(this).attr("id");
					$("#cat_id").val(linkTitle); 
					var hidden_value = $("#cat_id").val()
					$.post("http://localhost/chef-vincent/index.php",{cmd:"check",cat_id:hidden_value},
						   function(data)
						   {
							 // alert(data);
							  $("#category-images").html(data);
							  $("#category-images").cycle({
															//fx:'fade',
															//timeout:1000,
														 	//speed:2000,
															//pause:0
															prev:   '#prev', 
														    next:   '#next', 
															//timeout: 0 
															timeout:2000
														 });
							  $('#pauseButton').click(function() 
							  							{ 
														$('#category-images').cycle('pause'); 
														});
														
							  $('#resumeButton').click(function() 
							  							{ 
											$('#category-images').cycle('resume'); 
														 });
							 
							  
						   });
					
					
							
					
					
										
			});
 });

