window.addEvent('domready', function() {

	// add flash eq
	var eq_image = $$('#wpr-content .eq img');
	if (eq_image && eq_image.length == 1) {
		var eq = new Swiff('/layouts/lplr/swf/eq.swf', {
			id: 'eq',
			width: 485,
			height: 100,
			params: {
				bgcolor: '#ffffff'
			}
		});
		eq.replaces(eq_image[0]);
	}

    // open external links in new window
    var externalLinks = $$('a[href^="http://"], a[href^="https://"]');
    if (externalLinks && eq_image.length > 0) {
        externalLinks.setProperty('target', '_blank');
    }
});

