$(function(){
	
	
	
	/* ----------------------------- Home Page About section ----------------------------- */	
	$('#learnMore').bind('click', function(){
		if($('#learnMoreDropDown').css('display') === 'none'){
			$('#learnMoreDropDown').slideDown('fast', function(){$(this).fadeIn('slow')});
			$('#learnMore').css({'color':'#8B0000'});
		}else{
			$('#learnMoreDropDown').slideUp('fast', function(){$(this).fadeOut('slow')});
		}
		
	});
	
	/* ----------------------------- Selects ----------------------------- */
	        
	$('.mainCity').uniform();
	$('.mainState').uniform();
	
	
	
	/* ----------------------------- AJAX CALL FOR CODEIGNITER ----------------------------- */
	
	
	
	$('.mainState').change(function(){
		var state = $(this).attr('value');
		$('.mainCity').html('<option value="" selected="selected"> - Select City - <option>')
		$.ajax({
			url: "/index.php/ajax/region/" + state,
			type: "get",
			dataType: "json", 
			success: function(result){
				var regions = $.parseJSON(result);

				var options = '';
				
				for (var i=0; i < result.length; i++) {
					options += '<option value="' + result[i].id + '">' + result[i].name + '</option>';
				}
				
				$('.mainCity').html(options);
			}
		});
	
	});
	
	
	
	                
});
