
$(document).ready(function(){
	//var logo = new Image(); logo.src = 'http://aqua-restaurant.com/bath/i/logo.jpg';
	/*if($('body#home').length==1) {
		var whatwedo = new Image(); whatwedo.src = 'http://adartdesign.co.uk/i/titles/what-we-do.png';
		var experience = new Image(); experience.src = 'http://adartdesign.co.uk/i/titles/experience-counts.png';
		var featured = new Image(); featured.src = 'http://adartdesign.co.uk/i/titles/featured-work.png';
		var contact = new Image(); contact.src = 'http://adartdesign.co.uk/i/titles/contact.png';
	}*/
	
	$(document).ScrollToAnchors(630);
	
});



var setupLinks = function() {
	if(!document.getElementsByTagName) return;
	var links = document.getElementsByTagName("a");
	for(var i=0;i<links.length;i++) {
		var link = links[i];
		if(link.getAttribute("href") && link.getAttribute("rel") == "external") {
			link.onclick = function() { window.open(this.getAttribute("href")); return false; };
		}
		if(link.getAttribute("href") && link.getAttribute("rel") == "additonal") {
			link.onclick = function() { window.open(this.getAttribute("href")); return false; };
		}
		if(link.getAttribute("href") && link.getAttribute("rel") == "pdf") {
			link.onclick = function() { window.open(this.getAttribute("href"),"popup","height=500,width=750,toolbar=no"); return false; };
		} 
	}
}





$(document).ready(setupLinks);