function init() {
	
    /* Get Element By Class - productPriceLabel */
	//Define Array
    var allHTMLTags = new Array();

    //Create Array of All HTML Tags
    var allHTMLTags=document.getElementsByTagName("*");

    //Loop through all tags using a for loop
    for (i=0; i<allHTMLTags.length; i++) {

	    //Get all tags with the specified class name.
	    if (allHTMLTags[i].className=='productPriceLabel') {
	
	    //code to apply
	    allHTMLTags[i].style.display='none';
    	}
    }
/* *********************************************************** */
    /* Get Element By Class - productPriceValue */
	//Define Array
    var allHTMLTags2 = new Array();

    //Create Array of All HTML Tags
    var allHTMLTags2=document.getElementsByTagName("*");

    //Loop through all tags using a for loop
    for (i=0; i<allHTMLTags2.length; i++) {

	    //Get all tags with the specified class name.
	    if (allHTMLTags2[i].className=='productPriceValue') {
	
	    //code to apply
	    allHTMLTags2[i].style.display='none';
    	}
    }
	
}
window.onload = init; 