window.addEvent('domready',function(e){
	$('credits').addEvent('click', function(e){
		var e = new Event(e).stop();
		popUp('credits.html',600,450);
		return false;
	});
	
	$('conditions').addEvent('click', function(e){
		var e = new Event(e).stop();
		popUp('conditions.html',450,450);
		return false;
	});
});

/*
function handleChange(event){
	var title = "World's Premier Ceiling Mirror Manufacturer and Distributor";
	switch(event.path){
	case "/video/":
		title = "Videos";
		break;
	case "/faq/":
		title = "Frequently Asked Questions (FAQ)";
		break;
	case "/about/":
		title = "About Us";
		break;
	case "/products/":
		title = "Products";
		break;
	case "/contact/":
		title = "Contact Us";
		break;
	}
	SWFAddress.setTitle("Love is Above - " + title);
}

SWFAddress.addEventListener(SWFAddressEvent.CHANGE, handleChange);
*/