// get the h2 text - check all multimedia video links for same string
function setupBlogLink() {
	blogLink = $("but-blog").getElement("a");
	blogLink.set("href", "http://blog.greeceisforlovers.com/");
	blogLink.set("rel", "nofollow");
	blogLink.set("target", "_blank");
	//alert(blogLink.get("href"));
}


window.addEvent('domready', function() {
	//alert("yo");
	setupBlogLink();
	var stdsBlank = new StdsStrictBlank();
});