String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
}

$(function(){ 

	$('input[data-hint!=""]').hint();
	
	$('select.uniform').uniform();
	
	$('.profile-grid div').each(function(i, e) {
		if(i % 6 != 6 - 1) $(e).removeClass('last');
	});
	
	$("a[href$='.pdf'][class!='no-pdf']").addClass("pdf");

});

$(function() {
	$("#LanguageSelectorContainer option").each(function(i, obj) {
		$(obj).html($(obj).html().capitalize());
	});
});



