$(document).ready(function(){
	$('a').each(function(){
		try{
		var checkHref = $(this).attr('href');
		if(checkHref != "" && checkHref != "#"){
			if(checkHref.indexOf('mailto:') == -1 && checkHref.indexOf('http://') == -1 ){
				var href = $(this).attr('href')+ ($(this).attr('href').indexOf('?') == -1 ? '?':'&') +'time=' + new Date().getTime();
				$(this).attr('href', href);
			
			}
		}
		}catch(e){}
		
	});
 });
