$(document).ready(function()
{
	jQuery.each($("a.class=buttonLink"), function(index, link)
	{
		var href = $(link).attr("href");
		
		if (href.indexOf("http") != 0)
		{
			$(link).attr("href", "/" + href);	
		}		
	})
	
	jQuery.each($("img.button"), function(index, img)
	{
		//var src = $(img).attr("src").replace("common/", "/common/");
		
		//$(img).attr("src", src);	
	})
})

