$j(document).ready( function() {
	$j(".ct_strategy_img").click( function(evnt) { return HomePage.evtStrategy(this); } );
	$j("#strategy area").click( function(evnt) { return HomePage.evtStrategy(this); } );	
} );

var HomePage = {
	evtStrategy: function(o) {
		$j(".ct_strategy_cnt:visible").hide(0);
		$j("#ct_strategy_cnt_"+o.id.replace(/.*_/gi, "")).show(0);
		return false;
	}
};
