$(document).ready(function() {
$("input.ratings").change(function() {
var type = $("input.ratings:checked").val();
var uid = $('input.uid').val();
if ((type == 'alpine') || (type == 'aid') || (type == 'boulder') || (type == 'ice') || (type == 'rock')) {
$('#contentLoading').ajaxSend(function(){
$("#contentLoading").show();
});
$('#contentLoading').ajaxStop(function(){
$("#contentLoading").fadeOut("fast");
});
$.post('./include/countries.inc.php', {
type: type
}, function(txt) {
//remove this msg box for production use.
$("#msg").fadeIn("slow").html(txt);
$('.item li:nth-child(1)').addClass('li_stripe');
$('.rock_table tr:nth-child(even)').addClass('stripe');
$('a.showroutes').html('Show / Hide Featured Climbs');
$("a.showroutes").click(function() {
$('.routebucket').slideToggle("fast").show();
return false;
});
//close AJAX request
});
//close if statement
}
});
});
$(document).ready(function() {
$("#contentLoading").hide();
});