$('document').ready(function () {
  $('#featured').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    speed:  'slow', 
    timeout: 5000,
		slideExpr: 'a',
		pause: 1
	});
/*
  $('#people').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    speed:  'slow', 
    timeout: 5000,
		slideExpr: 'a'
	});
*/
	
	// Contact find forms
	$(".find-contact select").change(function () {
		$(this).parent().submit();	
	});

	$(".find-contact").submit(function() {
    category = $('#'+this.id+' input[name="category"]').val();
    country = $('#'+this.id+' select[name="country"]').val();
    if (category != '' && country != '') {
			$("#"+category+"-results").html('');
			$("#"+category+"-results").addClass('loading');
	    $.ajax({
	      type: "GET",
	      url: "item/"+category+"/"+country+"/",
	      cache: false,
	//      data: "inputField ="+ inputField,
	      success: function(html){
					$("#"+category+"-results").removeClass('loading');			
	        $("#"+category+"-results").html(html);
	        $("#"+category+"-results").jScrollPane();
	      }
	    });
		}
    return false;
  });
  
  // Contact info Scrolls
  $('.contact-results').jScrollPane();
});