// JavaScript Show/Hide

// onclick="showHide('sub_cat_box_1');return true;"
// table id="show_hide" style="display:none;" // style="display:block;"
// change image when expanded

var numItems = 2;

function init_theme_sections(){
    for (i = 1; i <= numItems; i++){
        document.getElementById("sub_cat_box_" + i).style.display = 'none';
	    document.getElementById('img_sub_cat_box_' + i).src=media_url + "hr_solutions/images/global/icon_plus.png";
    }
}

function showHide_scb(targetName) {
	
	if (document.getElementById) { // NS6+
		target = document.getElementById(targetName);
	}    else if( document.all ) { // IE4+
		    target = document.all[targetName];
		}
	
	if( target ) {
		if( target.style.display == "none" ) {
		target.style.display = "block";
		document.getElementById('img_' + target.id).src=media_url + "hr_solutions/images/global/icon_minus.png";
	}     else {
		  target.style.display = "none";
		 document.getElementById('img_' +  target.id).src=media_url + "hr_solutions/images/global/icon_plus.png";
          }
	}

} 

