//function showPDF(){
//document.getElementById("catalog_files").style.display = "block";	
//}


$(document).ready(function(){

function showPDF(){
    $("#catalog_files").css("display","block");
}


// add class "inline_cats" to #webpage_content_body for ct's that should show
// cats inline instead of one per row

var current_category_ids_path_array = current_category_ids_path.split(",");

if(current_category_ids_path_array[1] == 0){
	var check_this_ct = current_category_ids_path_array[0];
	if(check_this_ct != 47 && check_this_ct != 24 && check_this_ct != 48){
		$("#webpage_content_body").addClass("inline_cats");
	}
}

// hide the bread crumbs on sub categories
if(current_category_ids_path_array[2] != 0 ){
 //   $(".categories_path").hide();
    $(".products_summary").addClass("products_summary_mod");
}

}); // ready
