// JavaScript Document
function round() {
$(".rounded").corner("round 3px");
}
function replace(pImage) {
$('div#object').html('<img src="'+pImage+'" />'); 
$("div#object").corner("round 3px");
}

var tradegothic= {
  src: '/swf/tradegothic_light.swf'
};
sIFR.activate(tradegothic);

sIFR.replace(tradegothic, {
  selector: 'h1', css: [ '.sIFR-root {color: #333333; font-size: 40px;}' ,
	'a {text-decoration: none; color: #0099CC;}',
	'a:hover {color: #666666;}',
	'a:focus {color: #666666;}',
	'a:active {color: #666666;}']
});

sIFR.replace(tradegothic, {
  selector: 'h2', css: [ '.sIFR-root {color: #333333; font-size: 20px;}' ,
	'a {text-decoration: none; color: #0099CC;}',
	'a:hover {color: #666666;}',
	'a:focus {color: #666666;}',
	'a:active {color: #666666;}']
});

function switchit(p1,p2) {
$("#"+p1).toggle();
$("#"+p2).toggle();
}

