﻿
	String.prototype.endsWith = function(pattern) {
    var d = this.length - pattern.length;
    return d >= 0 && this.lastIndexOf(pattern) === d;
	};
	
	$(document).ready(function() {

				if( $('a[title=Inglês]').length > 0 && $('a[title=Inglês]').attr('href').endsWith('CultureRedirect.aspx?Lang=EN') == true)
				{
					$('a[title=Inglês]').replaceWith('<a href="'+ $('a[title=Inglês]').attr('href') +'"><img src="/Style Library/Images/EN.gif"/></a>');
				}
				else if ( $('a[title=Portuguese]').length > 0 && $('a[title=Portuguese]').attr('href').endsWith('CultureRedirect.aspx?Lang=PT') == true)
				{
					$('a[title=Portuguese]').replaceWith('<a href="'+ $('a[title=Portuguese]').attr('href') +'"><img src="/Style Library/Images/PT.gif"/></a>');				
				}
				else
				{
					//Nothing found?!
				}
	});
	

